dont build blender/kernel if the game engines disabled.

This commit is contained in:
Campbell Barton
2010-10-31 00:56:46 +00:00
parent b349f7c99d
commit 7f5abb7fe2
6 changed files with 38 additions and 9 deletions

View File

@@ -1,11 +1,10 @@
#!/usr/bin/python
Import ('env')
SConscript(['blender/SConscript',
'kernel/SConscript',
'creator/SConscript'])
SConscript(['blender/SConscript', 'creator/SConscript'])
if env['WITH_BF_GAMEENGINE']:
SConscript (['gameengine/SConscript'])
SConscript (['kernel/SConscript', 'gameengine/SConscript'])
if env['WITH_BF_PLAYER']:
SConscript (['blenderplayer/bad_level_call_stubs/SConscript'])