blender/extern/recastnavigation/SConscript

13 lines
334 B
Python
Raw Normal View History

2010-09-01 21:43:22 +00:00
#!/usr/bin/python
Import('env')
sources = env.Glob('Recast/Source/*.cpp') + env.Glob('Detour/Source/*.cpp')
sources += ['recast-capi.cpp']
2010-09-01 21:43:22 +00:00
incs = 'Recast/Include Detour/Include'
env.BlenderLib ( 'extern_recastnavigation', sources, Split(incs), [],
libtype=['extern','player'],
priority=[10,185])