blender/intern/bsp/SConscript
Joshua Leung e1e6391a0b Fix for scons + mingw compiling
Removed the special exception for booleans lib priority, which was needed in the past to get it compiling ok with the src directory.
2009-11-06 08:32:50 +00:00

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 )