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:
authorBenoit Bolsee <benoit.bolsee@online.be>2011-09-11 18:13:04 +0400
committerBenoit Bolsee <benoit.bolsee@online.be>2011-09-11 18:13:04 +0400
commitb988a2abf815d74aba7bd9bf910b712735ea8f53 (patch)
tree0b2bf75ea63641014a3441c09d47d9911201d2c7 /source/blender/editors/util/SConscript
parent3d3f6b1ddc655a070c20e41abec2e7850fd266e6 (diff)
Recast: fix bad level calls, Recast compiled out if BGE not enabled. SCons updated but not tested.
Diffstat (limited to 'source/blender/editors/util/SConscript')
-rw-r--r--source/blender/editors/util/SConscript6
1 files changed, 1 insertions, 5 deletions
diff --git a/source/blender/editors/util/SConscript b/source/blender/editors/util/SConscript
index 80c05dc5db4..cfbc735eb5c 100644
--- a/source/blender/editors/util/SConscript
+++ b/source/blender/editors/util/SConscript
@@ -1,15 +1,11 @@
#!/usr/bin/python
Import ('env')
-sources = env.Glob('*.c') + env.Glob('*.cpp')
+sources = env.Glob('*.c')
incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf'
incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include'
incs += ' ../../makesrna'
-incs += ' #extern/recastnavigation/Recast/Include'
incs += ' ../../blenloader'
-if not env['WITH_BF_GAMEENGINE']:
- sources.remove('navmesh_conversion.cpp')
-
env.BlenderLib ( 'bf_editors_util', sources, Split(incs), [], libtype=['core','player'], priority=[330,210] )