blender/extern/recastnavigation/SConscript
Sergey Sharybin 9d1b4b63b3 Fix for recent commit:
- Some declarations after statement left.
- Do not use static inline functions in MOD_navmesh. It produces errors
  with msvc and not sure it's actually helps -- optimizer should
  make it inlined itself.
2011-09-20 17:06:17 +00:00

13 lines
334 B
Python

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