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

SConscript « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d7c3715349b2aa37780a5c120df498d0c8c0a1b9 (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
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/python
Import ('env')

SConscript(['audaspace/SConscript',
            'string/SConscript',
            'ghost/SConscript',
            'guardedalloc/SConscript',
            'moto/SConscript',
            'container/SConscript',
            'memutil/SConscript/',
            'decimation/SConscript',
            'iksolver/SConscript',
            'itasc/SConscript',
            'boolop/SConscript',
            'opennl/SConscript',
            'mikktspace/SConscript',
            'smoke/SConscript'])

# NEW_CSG was intended for intern/csg, but
# getting it to compile is difficult
# intern/bsp has been used anyway, so
# perhaps get rid of intern/csg?
NEW_CSG = 'false'

if env ['WITH_BF_REMESH']:
    SConscript(['dualcon/SConscript'])

if env['WITH_BF_FLUID']:
    SConscript(['elbeem/SConscript'])
    
if env['WITH_BF_CYCLES']:
    SConscript(['cycles/SConscript'])

if NEW_CSG == 'false':
    SConscript(['bsp/SConscript'])
else:
    SConscript(['csg/SConscript'])

if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc'):
    SConscript(['utfconv/SConscript'])