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

SConscript « img « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8766eb76ba20581aba4125bb74e9b9016bf808e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
img_env = Environment()

# Import the C flags set in the SConstruct file
Import ('cflags')
Import ('cxxflags')
Import ('defines')
img_env.Append (CCFLAGS = cflags)
img_env.Append (CXXFLAGS = cxxflags)
img_env.Append (CPPDEFINES = defines)

source_files = ['intern/IMG_Api.cpp',
                'intern/IMG_BrushRGBA32.cpp',
                'intern/IMG_CanvasRGBA32.cpp',
                'intern/IMG_Line.cpp',
                'intern/IMG_Pixmap.cpp',
                'intern/IMG_PixmapRGBA32.cpp',
                'intern/IMG_Rect.cpp']

img_env.Library (target='#/lib/blender_img', source=source_files)