forked from bartvdbraak/blender
10 lines
251 B
Python
10 lines
251 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = env.Glob('intern/*.cpp')
|
|
|
|
incs = 'intern ../container ../moto/include ../memutil ../guardedalloc'
|
|
|
|
env.BlenderLib ('bf_intern_bsp', sources, Split(incs), [], libtype=['core','player'], priority=[200,100] )
|
|
|