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

SConscript « bmfont « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b0f596c57c9c4cc012e721b5a5a9a958e86d1d76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Import ('user_options_dict')
Import ('library_env')

bmfont_env = library_env.Copy ()

source_files = ['intern/BMF_Api.cpp',
                'intern/BMF_BitmapFont.cpp',
                'intern/BMF_font_helv10.cpp',
                'intern/BMF_font_helv12.cpp',
                'intern/BMF_font_helvb10.cpp',
                'intern/BMF_font_helvb12.cpp',
                'intern/BMF_font_helvb14.cpp',
                'intern/BMF_font_helvb8.cpp',
                'intern/BMF_font_scr12.cpp',
                'intern/BMF_font_scr14.cpp',
                'intern/BMF_font_scr15.cpp']

bmfont_env.Append (CPPPATH = ['.',
                              'intern'])

bmfont_env.Append (CPPPATH = user_options_dict['OPENGL_INCLUDE'])
bmfont_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_BMF', source=source_files)