Cleanup: remove unused CMake WITH_MOD_CLOTH_ELTOPO option

This commit is contained in:
Campbell Barton
2019-11-25 14:52:44 +11:00
parent 00ca7a03da
commit b2d940250c
5 changed files with 0 additions and 29 deletions

View File

@@ -315,8 +315,6 @@ endif()
option(WITH_MOD_FLUID "Enable Elbeem Modifier (Fluid Simulation)" ON)
option(WITH_MOD_SMOKE "Enable Smoke Modifier (Smoke Simulation)" ON)
option(WITH_MOD_REMESH "Enable Remesh Modifier" ON)
# option(WITH_MOD_CLOTH_ELTOPO "Enable Experimental cloth solver" OFF) # this is now only available in a branch
# mark_as_advanced(WITH_MOD_CLOTH_ELTOPO)
option(WITH_MOD_OCEANSIM "Enable Ocean Modifier" OFF)
# Image format support

View File

@@ -534,9 +534,6 @@ function(setup_liblinks
)
endif()
endif()
if(WITH_MOD_CLOTH_ELTOPO)
target_link_libraries(${target} ${LAPACK_LIBRARIES})
endif()
if(WITH_LLVM)
target_link_libraries(${target} ${LLVM_LIBRARY})
endif()

View File

@@ -517,17 +517,6 @@ if(WITH_ALEMBIC)
set(ALEMBIC_FOUND 1)
endif()
if(WITH_MOD_CLOTH_ELTOPO)
set(LAPACK ${LIBDIR}/lapack)
# set(LAPACK_INCLUDE_DIR ${LAPACK}/include)
set(LAPACK_LIBPATH ${LAPACK}/lib)
set(LAPACK_LIBRARIES
${LIBDIR}/lapack/lib/libf2c.lib
${LIBDIR}/lapack/lib/clapack_nowrap.lib
${LIBDIR}/lapack/lib/BLAS_nowrap.lib
)
endif()
if(WITH_IMAGE_OPENJPEG)
set(OPENJPEG ${LIBDIR}/openjpeg)
set(OPENJPEG_INCLUDE_DIRS ${OPENJPEG}/include/openjpeg-2.3)

View File

@@ -45,11 +45,6 @@ if(WITH_DRACO)
add_subdirectory(draco)
endif()
# now only available in a branch
# if(WITH_MOD_CLOTH_ELTOPO)
# add_subdirectory(eltopo)
# endif()
if(WITH_BINRELOC)
add_subdirectory(binreloc)
endif()

View File

@@ -442,14 +442,6 @@ if(WITH_BULLET)
add_definitions(-DWITH_BULLET)
endif()
# if(WITH_MOD_CLOTH_ELTOPO)
# list(APPEND INC
# ../../../extern/eltopo
# ../../../extern/eltopo/eltopo3d
# )
# add_definitions(-DWITH_ELTOPO)
# endif()
if(WITH_IMAGE_OPENEXR)
add_definitions(-DWITH_OPENEXR)
endif()