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:
authorNathan Letwory <nathan@letworyinteractive.com>2004-03-09 21:21:28 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2004-03-09 21:21:28 +0300
commit98bed4ca3207ff8fe5f842f5b60722ec8d718267 (patch)
treea680aefab7c2383895c25fb18a3b9e9481948549 /intern/SConscript
parent5bd9534103048870ea027b58690b80e07244ab54 (diff)
- [SCONS] update to use the new csg script if you set the variable to true. I keep it to this file for the moment, since building this is not always successfull. So if you want to use this instead of the current method, set NEW_CSG in this file to true.
Diffstat (limited to 'intern/SConscript')
-rw-r--r--intern/SConscript8
1 files changed, 7 insertions, 1 deletions
diff --git a/intern/SConscript b/intern/SConscript
index aa41a4335c4..a1926e110f6 100644
--- a/intern/SConscript
+++ b/intern/SConscript
@@ -7,5 +7,11 @@ SConscript(['SoundSystem/SConscript',
'container/SConscript',
'memutil/SConscript/',
'decimation/SConscript',
- 'bsp/SConscript',
'iksolver/SConscript'])
+
+NEW_CSG='false'
+
+if NEW_CSG=='false':
+ SConscript(['bsp/SConscript'])
+else:
+ SConscript(['csg/SConscript'])