* update scons-files to build with Ton's latest commits.

This commit is contained in:
Nathan Letwory
2008-01-08 05:57:27 +00:00
parent e58676f713
commit c344021b83
10 changed files with 58 additions and 25 deletions

View File

@@ -0,0 +1,16 @@
#!/usr/bin/python
Import ('env')
sources = env.Glob('intern/*.c')
incs = '. ../editors/include ../makesdna ../blenlib ../blenkernel ../nodes'
incs += ' ../imbuf ../blenloader ../render/extern/include'
incs += ' #intern/guardedalloc #intern/memutil'
incs += ' ' + env['BF_PYTHON_INC']
defs = []
if env['OURPLATFORM'] in ('win32-mingw', 'win32-vc') and env['BF_DEBUG']:
defs.append('Py_TRACE_REFS')
env.BlenderLib( libname = 'bf_python', sources = Split(sources), includes = Split(incs), defines = defs, libtype = ['core'], priority = [60])