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: ed4564a3348cade7accf2bbf14188b62b415fc4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/python
Import ('user_options_dict')
Import ('library_env')

img_env = library_env.Copy ()

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='#'+user_options_dict['BUILD_DIR']+'/lib/blender_img', source=source_files)