From e29dba8a5a39c563d21e6ddf65a2dd147b732c82 Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Sat, 2 Feb 2008 22:17:23 +0000 Subject: * make sure opennl is in link list for player. I hope I got the priority for non-windows systems ok. --- intern/opennl/SConscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'intern/opennl') diff --git a/intern/opennl/SConscript b/intern/opennl/SConscript index bcfb030f7e6..e46cefbff58 100644 --- a/intern/opennl/SConscript +++ b/intern/opennl/SConscript @@ -6,7 +6,7 @@ sources = env.Glob('intern/*.c') + env.Glob('superlu/*.c') incs = 'extern superlu' 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: - env.BlenderLib ('blender_ONL', sources, Split(incs), [], libtype='core', priority=55 ) + env.BlenderLib ('blender_ONL', sources, Split(incs), [], libtype=['core','player'], priority=[55,22] ) -- cgit v1.2.3