forked from bartvdbraak/blender
12 lines
284 B
Python
12 lines
284 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
SConscript(['blender/SConscript',
|
|
'kernel/SConscript',
|
|
'creator/SConscript'])
|
|
if env['WITH_BF_GAMEENGINE'] == 1:
|
|
SConscript (['gameengine/SConscript'])
|
|
|
|
if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw'):
|
|
SConscript (['icons/SConscript'])
|