2004-05-16 13:07:20 +00:00
|
|
|
#!/usr/bin/python
|
2004-02-15 19:25:32 +00:00
|
|
|
Import ('user_options_dict')
|
2004-02-29 21:40:48 +00:00
|
|
|
Import ('library_env')
|
|
|
|
|
|
|
|
bmfont_env = library_env.Copy ()
|
2004-01-04 21:11:59 +00:00
|
|
|
|
|
|
|
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'])
|
|
|
|
|
2004-03-02 08:40:19 +00:00
|
|
|
bmfont_env.Append (CPPPATH = user_options_dict['OPENGL_INCLUDE'])
|
2004-02-15 19:25:32 +00:00
|
|
|
bmfont_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_BMF', source=source_files)
|