Scons build fixes from lukep:

Remove Physics libraries from non gameblender builds
Add Quicktime to player
From Chris Keith:
Remove Quicktime framework (MacOSX!) on Windows builds.
This commit is contained in:
Kester Maddock 2004-06-07 00:57:31 +00:00
parent a703837179
commit 372636c116

@ -933,6 +933,9 @@ def common_libs(env):
'blender_MT', 'blender_MT',
'blender_BMF', 'blender_BMF',
'soundsystem']) 'soundsystem'])
if user_options_dict['USE_QUICKTIME'] == 1:
env.Append (LIBS=['blender_quicktime'])
def international_libs(env): def international_libs(env):
""" """
@ -960,8 +963,6 @@ def blender_libs(env):
'blender_BSP', 'blender_BSP',
'blender_blenkernel', 'blender_blenkernel',
'blender_IK']) 'blender_IK'])
if user_options_dict['USE_QUICKTIME'] == 1:
env.Append (LIBS=['blender_quicktime'])
def ketsji_libs(env): def ketsji_libs(env):
""" """