Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SConscript « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bcf67055788c7aca7a72cad5c1e1b4049761034d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/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']);