- BLF_lang_init used confusing IFDEF's, unlikely this was well tested. Split this into 3 functions for Apple/Win32/Unix, Unix uses BLI_gethome_folder(), cant test others, ideally they should use BLI_gethome_folder too but needs testing. Possibly each os cant be made to use BLI_gethome_folder and the separate func's can be removed (please test). - units, hectometers were displayed wrong.
22 lines
560 B
Python
22 lines
560 B
Python
#!/usr/bin/python
|
|
import sys
|
|
Import ('env')
|
|
|
|
sources = env.Glob('intern/*.c')
|
|
|
|
incs = '. intern #/intern/guardedalloc ../blenkernel ../blenlib ../makesdna ../editors/include'
|
|
incs += ' #/extern/glew/include'
|
|
incs += ' ' + env['BF_FREETYPE_INC']
|
|
incs += ' ' + env['BF_GETTEXT_INC']
|
|
|
|
defs = []
|
|
|
|
if sys.platform == 'win32':
|
|
defs.append('_WIN32')
|
|
defs.append('USE_GETTEXT_DLL')
|
|
|
|
if env['WITH_BF_INTERNATIONAL']:
|
|
defs.append('INTERNATIONAL')
|
|
|
|
env.BlenderLib ( 'bf_blenfont', sources, Split(incs), Split(defs), libtype=['core','player'], priority=[210,210] )
|