Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SConscript « recastnavigation « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c15e518eb15149c56c345f558546b9fa054ca86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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])