2005-10-29 13:26:31 +00:00
|
|
|
#!/usr/bin/python
|
2006-02-04 14:15:10 +00:00
|
|
|
Import ('env')
|
2005-10-29 13:26:31 +00:00
|
|
|
|
2006-02-04 14:15:10 +00:00
|
|
|
sources = env.Glob('intern/*.cpp')
|
2005-10-29 13:26:31 +00:00
|
|
|
|
2006-02-04 14:15:10 +00:00
|
|
|
incs = '. intern extern ../moto/include ../container ../memutil'
|
2006-09-08 02:36:44 +00:00
|
|
|
incs += ' ../../source/blender/makesdna ../../intern/guardedalloc'
|
|
|
|
incs += ' ../../source/blender/blenlib'
|
2005-10-29 13:26:31 +00:00
|
|
|
|
2006-11-28 21:12:31 +00:00
|
|
|
if (env['OURPLATFORM'] == 'win32-mingw'):
|
2008-12-23 16:07:24 +00:00
|
|
|
env.BlenderLib ('blender_bop', sources, Split(incs) , [], libtype='intern', priority = 5 )
|
2006-11-28 21:12:31 +00:00
|
|
|
else:
|
2008-12-23 16:07:24 +00:00
|
|
|
env.BlenderLib ('blender_bop', sources, Split(incs) , [], libtype='intern', priority = 5 )
|
2006-11-28 21:12:31 +00:00
|
|
|
|