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: af057a739276b9be0a4491bb362dfba86d0d4261 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/python

Import('env')

SConscript(['glew/SConscript'])

if env['WITH_BF_BULLET']:
    SConscript(['bullet2/src/SConscript'])

if env['WITH_BF_FFMPEG'] and env['BF_FFMPEG_LIB'] == '':
    SConscript(['x264/SConscript'])
    SConscript(['libmp3lame/SConscript'])
    SConscript(['xvidcore/SConscript'])
    SConscript(['ffmpeg/SConscript'])

if env['WITH_BF_OPENJPEG'] and env['BF_OPENJPEG_LIB'] == '':
    SConscript(['libopenjpeg/SConscript'])

if env['WITH_BF_REDCODE'] and env['BF_REDCODE_LIB'] == '':
    SConscript(['libredcode/SConscript'])

if env['OURPLATFORM'] == 'linux2':
    SConscript(['binreloc/SConscript']);

if env['WITH_BF_LZO']:
	SConscript(['lzo/SConscript'])

if env['WITH_BF_LZMA']:
	SConscript(['lzma/SConscript'])