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/SConscript
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/SConscript')
-rw-r--r--source/blender/editors/mesh/SConscript6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/editors/mesh/SConscript b/source/blender/editors/mesh/SConscript
index b992ae5f04c..24c63a5dc54 100644
--- a/source/blender/editors/mesh/SConscript
+++ b/source/blender/editors/mesh/SConscript
@@ -15,4 +15,10 @@ if env['OURPLATFORM'] == 'linux':
if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc'):
incs += ' ' + env['BF_PTHREADS_INC']
+if env['WITH_BF_GAMEENGINE']:
+ incs += ' #/extern/recastnavigation'
+ defs.append('WITH_GAMEENGINE')
+else:
+ sources.remove('mesh_navmesh.c')
+
env.BlenderLib ( 'bf_editors_mesh', sources, Split(incs), [], libtype=['core'], priority=[45] )