forked from bartvdbraak/blender
13 lines
358 B
Python
13 lines
358 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = env.Glob('intern/*.cpp')
|
|
|
|
incs = 'intern ../container ../moto/include ../memutil'
|
|
|
|
if (env['OURPLATFORM'] == 'win32-mingw'):
|
|
env.BlenderLib ('blender_BSP', sources, Split(incs), [], libtype='core', priority=26 )
|
|
else:
|
|
env.BlenderLib ('blender_BSP', sources, Split(incs), [], libtype='core', priority=20 )
|
|
|