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>2010-09-02 01:43:22 +0400
committerBenoit Bolsee <benoit.bolsee@online.be>2010-09-02 01:43:22 +0400
commita52f51df2768165e9868bc77c6307c1508b161e2 (patch)
treea762db05202570ef7e7822ede0f188703b1c32b4 /source/blender/editors/object/SConscript
parent22295fd1a25464aee254f82713e07f6b3bb537bf (diff)
Recast: add SCons build system.
Diffstat (limited to 'source/blender/editors/object/SConscript')
-rw-r--r--source/blender/editors/object/SConscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/object/SConscript b/source/blender/editors/object/SConscript
index 0a94de255cb..f4a476474e4 100644
--- a/source/blender/editors/object/SConscript
+++ b/source/blender/editors/object/SConscript
@@ -1,12 +1,13 @@
#!/usr/bin/python
Import ('env')
-sources = env.Glob('*.c')
+sources = env.Glob('*.c') + env.Glob('*.cpp')
incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf'
incs += ' ../../windowmanager #/intern/guardedalloc'
incs += ' ../../makesrna ../../python ../../ikplugin'
incs += ' ../../render/extern/include ../../gpu' # for object_bake.c
+incs += ' #extern/recastnavigation/Recast/Include'
defs = []