File: SConscript

package info (click to toggle)
blender 2.46%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 68,208 kB
  • ctags: 77,061
  • sloc: ansic: 518,049; cpp: 199,438; python: 67,585; sh: 7,097; makefile: 3,572; perl: 2,082; java: 8
file content (25 lines) | stat: -rw-r--r-- 633 bytes parent folder | download
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
#!/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(['x264/SConscript'])
    SConscript(['libmp3lame/SConscript'])
    SConscript(['xvidcore/SConscript'])
    SConscript(['ffmpeg/SConscript'])

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