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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2011-09-25 01:39:11 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2011-09-25 01:39:11 +0400
commitc0c488d0b2cf1365c88241d98fcef19b54d2f4fe (patch)
tree38f3c8c272da55e63d27e947a3349e6797e66cc8 /source/blender/python/SConscript
parent9c42afb1c02cafa21632bd2e19b47c012a230368 (diff)
parent1ddb64817dadf02d006a6db5ea4ad230484b5aca (diff)
Merged changes in the trunk up to revision 40520.
Diffstat (limited to 'source/blender/python/SConscript')
-rw-r--r--source/blender/python/SConscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/python/SConscript b/source/blender/python/SConscript
index e73abdeefd0..8ca7eac40f1 100644
--- a/source/blender/python/SConscript
+++ b/source/blender/python/SConscript
@@ -18,9 +18,6 @@ defs = []
if is_debug:
defs.append('_DEBUG')
-if env['WITH_BF_INTERNATIONAL']:
- defs.append('INTERNATIONAL')
-
sources = env.Glob('generic/*.c')
env.BlenderLib( libname = 'bf_python_ext', sources = Split(sources), includes = Split(incs), defines = defs, libtype = ['core','player'], priority = [363,165]) # ketsji is 360
@@ -44,5 +41,8 @@ if env['WITH_BF_PYTHON_SAFETY']:
if env['BF_BUILDINFO']:
defs.append('BUILD_DATE')
+if env['WITH_BF_INTERNATIONAL']:
+ defs.append('INTERNATIONAL')
+
sources = env.Glob('intern/*.c')
env.BlenderLib( libname = 'bf_python', sources = Split(sources), includes = Split(incs), defines = defs, libtype = ['core'], priority = [361])