Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2008-12-24 00:20:34 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2008-12-24 00:20:34 +0300
commit521fe6739a2ddae3f44fbecd1cec8212086ffcdc (patch)
tree0c4d3d0c8d8170121cca7ad631ec1de03f419c37 /source/blender/quicktime
parenteb186d18dcf19a8410238d542b31ffdd7beb991e (diff)
2.5 / SCons
New priorities for most libs, at least core. This is still for Blender proper, BGE and such still to come.
Diffstat (limited to 'source/blender/quicktime')
-rw-r--r--source/blender/quicktime/SConscript8
1 files changed, 2 insertions, 6 deletions
diff --git a/source/blender/quicktime/SConscript b/source/blender/quicktime/SConscript
index 49ecfc94a5d..5f3995a410a 100644
--- a/source/blender/quicktime/SConscript
+++ b/source/blender/quicktime/SConscript
@@ -19,11 +19,7 @@ incs = ['.',
incs.append(env['BF_QUICKTIME_INC'])
-if env['OURPLATFORM'] in ['win32-vc', 'darwin']:
- types = ['core', 'player']
- priorities = [115, 200]
-else:
- types = ['core']
- priorities = [115]
+types = ['core']
+priorities = [200]
env.BlenderLib ('bf_quicktime', sources=source_files, includes=incs, defines=['WITH_QUICKTIME'], libtype=types, priority=priorities)