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>2011-09-10 08:21:58 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-09-10 08:21:58 +0400
commit01dca44a840cb6066adb4845a5e93e0d118f239c (patch)
tree28c5914124a0c060b0c6e3b10e2fcb0d52625490 /source/blender/modifiers/CMakeLists.txt
parentfb4abf2e414064449624d169e8f10708990ea0d9 (diff)
disable navmesh feature when building without the game engine.
Diffstat (limited to 'source/blender/modifiers/CMakeLists.txt')
-rw-r--r--source/blender/modifiers/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/modifiers/CMakeLists.txt b/source/blender/modifiers/CMakeLists.txt
index d06ada737ee..bdbc51605ba 100644
--- a/source/blender/modifiers/CMakeLists.txt
+++ b/source/blender/modifiers/CMakeLists.txt
@@ -119,4 +119,8 @@ if(NOT WITH_MOD_FLUID)
add_definitions(-DDISABLE_ELBEEM)
endif()
+if(WITH_GAMEENGINE)
+ add_definitions(-DWITH_GAMEENGINE)
+endif()
+
blender_add_lib(bf_modifiers "${SRC}" "${INC}" "${INC_SYS}")