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:
authorCampbell Barton <ideasman42@gmail.com>2010-10-23 19:40:13 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-10-23 19:40:13 +0400
commit05b297c52f025b8d2068b742d944ecd92c402256 (patch)
treeedf35c513fbc0710673d447c02501f624475f62a /source/blender/modifiers/SConscript
parentf383e2e0e681bd860044b0b4de1a12bf4de3c0e0 (diff)
CMake options to disable Decimate and Boolean Modifiers: WITH_MOD_BOOLEAN, WITH_MOD_DECIMATE, renamed WITH_FLUID to WITH_MOD_FLUID
Diffstat (limited to 'source/blender/modifiers/SConscript')
-rw-r--r--source/blender/modifiers/SConscript4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/modifiers/SConscript b/source/blender/modifiers/SConscript
index 7aa198f51f0..8d420fcb3b7 100644
--- a/source/blender/modifiers/SConscript
+++ b/source/blender/modifiers/SConscript
@@ -12,6 +12,10 @@ incs += ' ' + env['BF_ZLIB_INC']
defs = []
+# could be made optional
+defs += ['WITH_MOD_BOOLEAN']
+defs += ['WITH_MOD_DECIMATE']
+
if env['BF_NO_ELBEEM']:
defs.append('DISABLE_ELBEEM')