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:
authorCampbell Barton <ideasman42@gmail.com>2010-10-10 11:01:56 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-10-10 11:01:56 +0400
commitf49fc58df63d42ab451380ea92e55b1265d14e4e (patch)
tree026f338d863a838844ba443f39056c01aa3be004 /source/gameengine/CMakeLists.txt
parentd420d09da982e1a874ffe2b0612b8fdd0afc980e (diff)
enable building the game engine without bullet for scons & cmake
Diffstat (limited to 'source/gameengine/CMakeLists.txt')
-rw-r--r--source/gameengine/CMakeLists.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/gameengine/CMakeLists.txt b/source/gameengine/CMakeLists.txt
index 7b58a2a6875..eea600cb0cb 100644
--- a/source/gameengine/CMakeLists.txt
+++ b/source/gameengine/CMakeLists.txt
@@ -37,7 +37,10 @@ ADD_SUBDIRECTORY(Physics/Dummy)
ADD_SUBDIRECTORY(Rasterizer)
ADD_SUBDIRECTORY(Rasterizer/RAS_OpenGLRasterizer)
ADD_SUBDIRECTORY(SceneGraph)
-ADD_SUBDIRECTORY(Physics/Bullet)
+
+IF(WITH_BULLET)
+ ADD_SUBDIRECTORY(Physics/Bullet)
+ENDIF(WITH_BULLET)
IF(WITH_PYTHON)
ADD_SUBDIRECTORY(VideoTexture)