Some changes to get bmesh compiling with scons.

This commit is contained in:
Nathan Letwory
2011-03-20 15:37:27 +00:00
parent 0683d881ae
commit 7ea81bdafc
2 changed files with 6 additions and 0 deletions

View File

@@ -1,8 +1,13 @@
#!/usr/bin/python
Import ('env')
import os
sources = env.Glob('intern/*.c')
# bmesh doesn't use booleanops.c - probably remove
sources.remove('intern' + os.sep + 'booleanops.c')
incs = '. #/intern/guardedalloc #/intern/memutil ../editors/include'
incs += ' ../blenlib ../blenfont ../makesdna ../windowmanager'
incs += ' ../render/extern/include #/intern/decimation/extern ../makesrna'

View File

@@ -27,6 +27,7 @@ sources += env.Glob('operators/*.c')
incs = ['#/intern/guardedalloc']
incs.append('../blenlib')
incs.append('../blenloader')
incs.append('../makesdna')
incs.append('../makesrna')
incs.append('../blenkernel')