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/ftfont
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/ftfont')
-rw-r--r--source/blender/ftfont/SConscript1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/ftfont/SConscript b/source/blender/ftfont/SConscript
index 3cde8d6346b..8cfe4223f1b 100644
--- a/source/blender/ftfont/SConscript
+++ b/source/blender/ftfont/SConscript
@@ -22,4 +22,5 @@ ftf_env.Prepend (CPPPATH = user_options_dict['GETTEXT_INCLUDE'])
ftf_env.Append(CCFLAGS = cflags)
ftf_env.Append(CXXFLAGS = cxxflags)
ftf_env.Append(CPPDEFINES = defines)
+ftf_env.Append(CPPDEFINES = 'FTGL_STATIC_LIBRARY')
ftf_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_FTF', source=source_files)