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

SConscript « blenkernel « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9f5027f801df181d8a627b02fc2a7f62d90c1a14 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/usr/bin/python
Import ('env')

sources = env.Glob('intern/*.c')

incs = '. #/intern/guardedalloc #/intern/memutil ../editors/include'
incs += ' ../blenlib ../blenfont ../makesdna ../windowmanager'
incs += ' ../render/extern/include #/intern/decimation/extern ../makesrna'
incs += ' ../imbuf ../ikplugin ../avi #/intern/elbeem/extern ../nodes ../modifiers'
incs += ' #/intern/iksolver/extern ../blenloader'
incs += ' #/extern/bullet2/src'
incs += ' #/intern/opennl/extern #/intern/bsp/extern'
incs += ' ../gpu #/extern/glew/include'
incs += ' #/intern/smoke/extern'
incs += ' #/intern/audaspace/intern'

incs += ' ' + env['BF_OPENGL_INC']
incs += ' ' + env['BF_ZLIB_INC']

defs = [ 'GLEW_STATIC' ]

if not env['WITH_BF_PYTHON']:
	defs.append('DISABLE_PYTHON')
else:
	incs += ' ../python'
	incs += ' ' + env['BF_PYTHON_INC']
	if env['BF_DEBUG']:
		defs.append('_DEBUG')

if env['WITH_BF_QUICKTIME']:
	incs += ' ../quicktime'

if env['WITH_BF_SDL']:
	incs += ' ' + env['BF_SDL_INC']
else:
	defs.append('DISABLE_SDL')

if env['WITH_BF_OPENEXR']:
	defs.append('WITH_OPENEXR')

if env['WITH_BF_TIFF']:
	defs.append('WITH_TIFF')

if env['WITH_BF_OPENJPEG']:
	defs.append('WITH_OPENJPEG')

if env['WITH_BF_DDS']:
	defs.append('WITH_DDS')

if env['WITH_BF_CINEON']:
	defs.append('WITH_CINEON')

if env['WITH_BF_HDR']:
	defs.append('WITH_HDR')

if env['WITH_BF_FFMPEG']:
	defs.append('WITH_FFMPEG')
	incs += ' ' + env['BF_FFMPEG_INC']

if env['WITH_BF_QUICKTIME']:
	defs.append('WITH_QUICKTIME')
	incs += ' ' + env['BF_QUICKTIME_INC']

if env['WITH_BF_BULLET']:
	defs.append('USE_BULLET')

if env['OURPLATFORM'] == 'darwin':
    if env['WITH_BF_OPENMP']:
       defs.append('PARALLEL=1')

if env['BF_NO_ELBEEM']:
	defs.append('DISABLE_ELBEEM')

if env['WITH_BF_LCMS']:
	defs.append('WITH_LCMS')
	incs += ' ' + env['BF_LCMS_INC']

if env['WITH_BF_LZO']:
	incs += ' #/extern/lzo/minilzo'
	defs.append('WITH_LZO')

if env['WITH_BF_LZMA']:
	incs += ' #/extern/lzma'
	defs.append('WITH_LZMA')

if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc'):
    incs += ' ' + env['BF_PTHREADS_INC']

env.BlenderLib ( libname = 'bf_blenkernel', sources = sources, includes = Split(incs), defines = defs, libtype=['core','player'], priority = [166,25] )