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.
This commit is contained in:
Joshua Leung
2009-11-06 08:32:50 +00:00
parent d315af74f0
commit e1e6391a0b

View File

@@ -5,8 +5,5 @@ 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=200 )
env.BlenderLib ('blender_BSP', sources, Split(incs), [], libtype='core', priority=200 )