navmesh: convert object_navmesh.cpp to plain c.

This commit is contained in:
2011-09-27 09:09:43 +00:00
parent 928e2784c6
commit a25c7f647e
7 changed files with 461 additions and 107 deletions

View File

@@ -1,13 +1,13 @@
#!/usr/bin/python
Import ('env')
sources = env.Glob('*.c') + env.Glob('*.cpp')
sources = env.Glob('*.c')
incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf'
incs += ' ../../windowmanager #/intern/guardedalloc ../../blenloader'
incs += ' ../../makesrna ../../python ../../ikplugin'
incs += ' ../../render/extern/include ../../gpu' # for object_bake.c
incs += ' #extern/recastnavigation/Recast/Include'
incs += ' #extern/recastnavigation'
defs = []