forked from bartvdbraak/blender
4782522379
Thanks!
16 lines
482 B
Python
16 lines
482 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = ['utfconv.c']
|
|
|
|
incs = '.'
|
|
defs = ''
|
|
|
|
# This is odd but leave it for now...
|
|
# Why have win32 check here? - this is only used for windows.
|
|
# ... because one day we might want to use it on other platforms.
|
|
if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'win64-mingw', 'linuxcross', 'win64-vc'):
|
|
sources += ['utf_winfunc.c']
|
|
|
|
env.BlenderLib('bf_utfconv', sources, Split(incs), Split(defs), libtype=['intern','player'], priority=[0,0])
|