* fix lib list creation. now blenderplayer links fine with both scons/mingw and scons/msvc

This commit is contained in:
Nathan Letwory 2009-09-05 02:14:45 +00:00
parent d56f826ea9
commit 668b92dfed

@ -404,7 +404,8 @@ if 'blender' in B.targets or not env['WITH_BF_NOBLENDER']:
env.BlenderProg(B.root_build_dir, "blender", dobj + mainlist, [], thestatlibs + thesyslibs, [B.root_build_dir+'/lib'] + thelibincs, 'blender')
if env['WITH_BF_PLAYER']:
playerlist = B.create_blender_liblist(env, 'player')
#playerlist = playerlist[0:2] + [mainlist[0]] + mainlist[2:] + [playerlist[2]]
playerlist += B.create_blender_liblist(env, 'intern')
playerlist += B.create_blender_liblist(env, 'extern')
env.BlenderProg(B.root_build_dir, "blenderplayer", dobj + playerlist, [], thestatlibs + thesyslibs, [B.root_build_dir+'/lib'] + thelibincs, 'blenderplayer')
##### Now define some targets