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>2006-02-24 21:55:44 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2006-02-24 21:55:44 +0300
commit9202ec2cad5d50c55e5585225ad065c31df165c0 (patch)
tree45454fa83d84f16860501d69537965ea7eed958e /extern/SConscript
parent5e3163041ab6dfad5d9270c4409072638cd986b1 (diff)
==SCons==
* compile game-engine libs only when actually enabled
Diffstat (limited to 'extern/SConscript')
-rw-r--r--extern/SConscript8
1 files changed, 5 insertions, 3 deletions
diff --git a/extern/SConscript b/extern/SConscript
index 4228c50ce7c..34e5b10d562 100644
--- a/extern/SConscript
+++ b/extern/SConscript
@@ -2,9 +2,11 @@
Import('env')
-SConscript(['qhull/SConscript',
- 'solid/SConscript',
- 'bullet/SConscript'])
+if env['WITH_BF_GAMEENGINE']:
+ SConscript(['qhull/SConscript',
+ 'solid/SConscript'])
+if env['WITH_BF_BULLET']:
+ SConscript(['bullet/SConscript'])
if env['WITH_BF_INTERNATIONAL']:
SConscript(['bFTGL/SConscript'])