forked from bartvdbraak/blender
11 lines
334 B
Python
11 lines
334 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'
|
|
|
|
env.BlenderLib ('blender_bop', sources, Split(incs) , [], libtype='common', priority = 5 )
|