From 98bed4ca3207ff8fe5f842f5b60722ec8d718267 Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Tue, 9 Mar 2004 18:21:28 +0000 Subject: [PATCH] - [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. --- intern/SConscript | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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'])