forked from bartvdbraak/blender
09c2fd6f11
This uses binreloc - http://autopackage.org/docs/binreloc/ it should also solve the problem of python scripts not being found.
21 lines
522 B
Python
21 lines
522 B
Python
#!/usr/bin/python
|
|
|
|
Import('env')
|
|
|
|
if env['WITH_BF_GAMEENGINE']:
|
|
SConscript(['qhull/SConscript',
|
|
'solid/SConscript'])
|
|
if env['WITH_BF_BULLET']:
|
|
SConscript(['bullet2/src/SConscript'])
|
|
|
|
if env['WITH_BF_INTERNATIONAL']:
|
|
SConscript(['bFTGL/SConscript'])
|
|
|
|
if env['WITH_BF_VERSE']:
|
|
SConscript(['verse/dist/SConstruct'])
|
|
|
|
if env['WITH_BF_FFMPEG'] and env['BF_FFMPEG_LIB'] == '':
|
|
SConscript(['ffmpeg/SConscript']);
|
|
|
|
if env['OURPLATFORM'] == 'linux2':
|
|
SConscript(['binreloc/SConscript']); |