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

SConscript « space_image « editors « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e84afcdaab166db04ed5b6cc8feed2e40fb50400 (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
#!/usr/bin/python
Import ('env')

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

incs = '../include ../../blenfont ../../blenlib ../../blenkernel ../../makesdna ../../imbuf'
incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include'
incs += ' ../../render/extern/include ../../makesrna ../../blenloader'

defs = []

if env['WITH_BF_LCMS']:
    defs.append('WITH_LCMS')
    incs += ' ' + env['BF_LCMS_INC']
if env['WITH_BF_OPENEXR']:
    defs.append('WITH_OPENEXR')
if env['WITH_BF_OPENJPEG']:
    defs.append('WITH_OPENJPEG')
if env['WITH_BF_TIFF']:
    defs.append('WITH_TIFF')
if env['WITH_BF_CINEON']:
	defs.append('WITH_CINEON')

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

env.BlenderLib ( 'bf_editors_space_image', sources, Split(incs), defs, libtype=['core'], priority=[40] )