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:
authorSergey Sharybin <sergey.vfx@gmail.com>2011-09-21 22:05:01 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2011-09-21 22:05:01 +0400
commitad1d1bd8186420c5b80eb8b4bb99d7b8d702fa23 (patch)
treea683be8b689f5c04db3a452c1a9c04c7bbfd75aa /source/blender/python/SConscript
parentf1a227cf432d6b95bc7cef67a68aaf1c62caafc7 (diff)
Added misses INTERNATIONAL definition in scons rules.
Diffstat (limited to 'source/blender/python/SConscript')
-rw-r--r--source/blender/python/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/python/SConscript b/source/blender/python/SConscript
index 5cc3f3bedc4..b21bc142a28 100644
--- a/source/blender/python/SConscript
+++ b/source/blender/python/SConscript
@@ -43,5 +43,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])