From 9202ec2cad5d50c55e5585225ad065c31df165c0 Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Fri, 24 Feb 2006 18:55:44 +0000 Subject: ==SCons== * compile game-engine libs only when actually enabled --- extern/SConscript | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'extern/SConscript') 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']) -- cgit v1.2.3