File: SConscript

package info (click to toggle)
blender 2.63a-1%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 108,940 kB
  • sloc: ansic: 781,340; cpp: 453,049; python: 133,391; xml: 4,140; sh: 573; makefile: 112; lisp: 69
file content (12 lines) | stat: -rw-r--r-- 334 bytes parent folder | download | duplicates (3)
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])