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:
authorMichel Selten <michel@mselten.demon.nl>2004-02-23 17:39:08 +0300
committerMichel Selten <michel@mselten.demon.nl>2004-02-23 17:39:08 +0300
commit874d454d67a25ac0a00ba558572c25342cdbaa3c (patch)
treef14c2a72a04217d6ed314439dc7606232c2d2bd6 /source/blender/blenlib/SConscript
parentd9cf17d930a86445b9a1562458e243cc4fc8c73e (diff)
SCons updates
* Removed the I18N_DEFINES from the config.opts file. This define is not a user setting. The defines depend on what options the user enables in the top of the config.opts file (USE_INTERNATIONAL). * Moved the defines to the correct SConscript files. Only the relevant libraries now use these defines. * Windows fix for the python settings. There were missing brackets [ and ] for these settings.
Diffstat (limited to 'source/blender/blenlib/SConscript')
-rw-r--r--source/blender/blenlib/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenlib/SConscript b/source/blender/blenlib/SConscript
index 9b091fc7c7f..bc36cd234e6 100644
--- a/source/blender/blenlib/SConscript
+++ b/source/blender/blenlib/SConscript
@@ -38,6 +38,9 @@ blenlib_env.Append (CPPPATH = ['.',
'#/intern/guardedalloc',
'../include'])
+if user_options_dict['USE_INTERNATIONAL'] == 1:
+ blenlib_env.Append (CPPDEFINES = 'WITH_FREETYPE2')
+
blenlib_env.Append (CPPPATH = extra_includes)
blenlib_env.Prepend (CPPPATH = user_options_dict['FREETYPE_INCLUDE'])
blenlib_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_blenlib', source=source_files)