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
path: root/source
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2012-01-03 08:03:41 +0400
committerThomas Dinges <blender@dingto.org>2012-01-03 08:03:41 +0400
commit434c1e6df82a082fe03034a3ad3825f7b50ea533 (patch)
tree951f12bd5d031956f43d35df9d88e8f23f01a2d7 /source
parent4e98dbe528432f808c2b6ee2d1e514d05cd71180 (diff)
Remesh Modifier:
* Fix for Campbell's "option to build without remesh modifier for cmake and scons" commit, this broke scons!
Diffstat (limited to 'source')
-rw-r--r--source/blender/modifiers/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/SConscript b/source/blender/modifiers/SConscript
index ce413faec86..03fcee399bd 100644
--- a/source/blender/modifiers/SConscript
+++ b/source/blender/modifiers/SConscript
@@ -14,10 +14,10 @@ incs += ' ' + env['BF_ZLIB_INC']
defs = []
if env ['WITH_BF_BOOLEAN']:
- incs += ' #/intern/dualcon'
defs.append('WITH_MOD_BOOLEAN')
if env['WITH_BF_REMESH']:
+ incs += ' #/intern/dualcon'
defs.append('WITH_MOD_REMESH')
if env ['WITH_BF_DECIMATE']: