forked from bartvdbraak/blender
e1e6391a0b
Removed the special exception for booleans lib priority, which was needed in the past to get it compiling ok with the src directory.
10 lines
216 B
Python
10 lines
216 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = env.Glob('intern/*.cpp')
|
|
|
|
incs = 'intern ../container ../moto/include ../memutil'
|
|
|
|
env.BlenderLib ('blender_BSP', sources, Split(incs), [], libtype='core', priority=200 )
|
|
|