forked from bartvdbraak/blender
d5fde6c48b
Makes text editors identify SConscripts as Python, and syntax highlight properly.
24 lines
849 B
Python
24 lines
849 B
Python
#!/usr/bin/python
|
|
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)
|