scons update, BF_NO_ELBEEM wasnt working, WITH_BF_SDL wasnt implimented, WITH_CCGSUBSURF isnt used anymore.

This commit is contained in:
2008-09-19 01:39:34 +00:00
parent 6ff74f4527
commit 15bce017df
5 changed files with 47 additions and 8 deletions

View File

@@ -75,7 +75,13 @@ if env['WITH_BF_VERSE']:
# TODO buildinfo
if env['BF_BUILDINFO'] == 1:
defs.append('NAN_BUILDINFO')
if env['BF_NO_ELBEEM'] == 1:
defs.append('DISABLE_ELBEEM')
if env['WITH_BF_SDL'] == 0:
defs.append('DISABLE_SDL')
if (env['BF_SPLIT_SRC'] == 1) and (env['OURPLATFORM'] == 'win32-mingw'):
for i in range(numlibs):
env.BlenderLib ( libname = 'src%d' % (i), sources = subsources[i], includes = Split(incs), defines = defs, libtype=['core', 'intern'], priority = [5, 25] )