* make sure opennl is in link list for player. I hope I got the priority for non-windows systems ok.

This commit is contained in:
Nathan Letwory 2008-02-02 22:17:23 +00:00
parent eb9375fb56
commit e29dba8a5a

@ -6,7 +6,7 @@ sources = env.Glob('intern/*.c') + env.Glob('superlu/*.c')
incs = 'extern superlu' incs = 'extern superlu'
if (env['OURPLATFORM'] == 'win32-mingw'): if (env['OURPLATFORM'] == 'win32-mingw'):
env.BlenderLib ('blender_ONL', sources, Split(incs), [], libtype=['core','intern'], priority=[1,80] ) env.BlenderLib ('blender_ONL', sources, Split(incs), [], libtype=['core','intern','player'], priority=[1,80,22] )
else: else:
env.BlenderLib ('blender_ONL', sources, Split(incs), [], libtype='core', priority=55 ) env.BlenderLib ('blender_ONL', sources, Split(incs), [], libtype=['core','player'], priority=[55,22] )