Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt2
-rw-r--r--extern/CMakeLists.txt2
2 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b0da2360b84..a3eb65d7ca2 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -125,6 +125,8 @@ endif()
option(WITH_MOD_FLUID "Enable Elbeem Modifier (Fluid Simulation)" ON)
option(WITH_MOD_DECIMATE "Enable Decimate Modifier" ON)
option(WITH_MOD_BOOLEAN "Enable Boolean Modifier" ON)
+option(WITH_MOD_CLOTH_ELTOPO "Enable Experemental cloth solver" ON)
+mark_as_advanced(WITH_MOD_CLOTH_ELTOPO)
# Image format support
option(WITH_IMAGE_OPENEXR "Enable OpenEXR Support (http://www.openexr.com)" ON)
diff --git a/extern/CMakeLists.txt b/extern/CMakeLists.txt
index c146d6dba83..3990d132757 100644
--- a/extern/CMakeLists.txt
+++ b/extern/CMakeLists.txt
@@ -31,7 +31,7 @@ if(WITH_BULLET)
add_subdirectory(bullet2)
endif()
-if(WITH_ELTOPO)
+if(WITH_MOD_CLOTH_ELTOPO)
add_subdirectory(eltopo)
endif()