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:
authorSergey Sharybin <sergey.vfx@gmail.com>2011-09-27 13:09:52 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2011-09-27 13:09:52 +0400
commitdcccf3fc1f915d0c8a3f2f8763170b6ff9394b8a (patch)
tree32c7e44265499113a2e81e6149f58bd0d9013212 /source/blender/editors/mesh/CMakeLists.txt
parenta25c7f647e3050239d0c0ea35db37a3e48f84e4c (diff)
navmesh: solve bad level calls to edit mesh functions
Move navmesh operators from editors/object to editors/mesh
Diffstat (limited to 'source/blender/editors/mesh/CMakeLists.txt')
-rw-r--r--source/blender/editors/mesh/CMakeLists.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/source/blender/editors/mesh/CMakeLists.txt b/source/blender/editors/mesh/CMakeLists.txt
index 02a25a2a122..f45f706b892 100644
--- a/source/blender/editors/mesh/CMakeLists.txt
+++ b/source/blender/editors/mesh/CMakeLists.txt
@@ -52,4 +52,16 @@ set(SRC
mesh_intern.h
)
+if(WITH_GAMEENGINE)
+ add_definitions(-DWITH_GAMEENGINE)
+
+ list(APPEND INC
+ ../../../../extern/recastnavigation
+ )
+
+ list(APPEND SRC
+ mesh_navmesh.c
+ )
+endif()
+
blender_add_lib(bf_editor_mesh "${SRC}" "${INC}" "${INC_SYS}")