forked from bartvdbraak/blender
15da2232f7
* some lib renaming
15 lines
482 B
Python
15 lines
482 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = env.Glob('intern/*.cpp')
|
|
|
|
incs = '. intern extern ../moto/include ../container ../memutil'
|
|
incs += ' ../../source/blender/makesdna ../../intern/guardedalloc'
|
|
incs += ' ../../source/blender/blenlib'
|
|
|
|
if (env['OURPLATFORM'] == 'win32-mingw'):
|
|
env.BlenderLib ('bf_bop', sources, Split(incs) , [], libtype=['common','intern'], priority = [5,50] )
|
|
else:
|
|
env.BlenderLib ('bf_bop', sources, Split(incs) , [], libtype='common', priority = 5 )
|
|
|