forked from bartvdbraak/blender
9d1b4b63b3
- 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.
13 lines
334 B
Python
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])
|