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:
Diffstat (limited to 'source/gameengine/SConscript')
-rw-r--r--source/gameengine/SConscript22
1 files changed, 22 insertions, 0 deletions
diff --git a/source/gameengine/SConscript b/source/gameengine/SConscript
new file mode 100644
index 00000000000..9ae0df1a8aa
--- /dev/null
+++ b/source/gameengine/SConscript
@@ -0,0 +1,22 @@
+Import ('use_ode')
+Import ('use_sumo')
+
+SConscript(['Ketsji/SConscript',
+ 'Ketsji/KXNetwork/SConscript',
+ 'Expressions/SConscript',
+ 'BlenderRoutines/SConscript',
+ 'Converter/SConscript',
+ 'Network/SConscript',
+ 'Network/LoopBackNetwork/SConscript',
+ 'GameLogic/SConscript',
+ 'Physics/common/SConscript',
+ 'Physics/Dummy/SConscript',
+ 'Rasterizer/SConscript',
+ 'Rasterizer/RAS_OpenGLRasterizer/SConscript',
+ 'SceneGraph/SConscript'])
+
+if use_sumo == 'true':
+ SConscript(['Physics/Sumo/SConscript'])
+
+if use_ode == 'true':
+ SConscript(['Physics/BlOde/SConscript'])