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: be10c33c3277ec483488364abcb3628938e2f838 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/python

Import('env')

sources = env.Glob('Recast/Source/*.cpp') + env.Glob('Detour/Source/*.cpp')

incs = 'Recast/Include Detour/Include'

env.BlenderLib ( 'extern_recastnavigation', sources, Split(incs), [],
                 libtype=['extern','player'],
                 priority=[10,185])