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>2006-08-22 17:04:07 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2006-08-22 17:04:07 +0400
commit7fd8ce8156fcada505c73f5fb7af4b8ced755a3e (patch)
treeffdff3e1b4526ad4a5a885db1a5b2fd52d710952 /source/blender/blenkernel/SConscript
parentf21f3cb290e221e4b4610e43c17e9702b43a1cb5 (diff)
* Patch #4909 by Joseph Eagar (joeedh)
- this patch adds verse support for SCons, which can be enabled by giving WITH_BF_VERSE=1, ie. on command-line - this patch also adds a custom lib dir possibility. From the patch description: "To set a custom ../lib dir, put LCGDIR="path to lib dir, including the platform folder name!" in your user-config.py." * Fixed win32-vc-config.py so that it links to the proper library. Reported by Brandano.
Diffstat (limited to 'source/blender/blenkernel/SConscript')
-rw-r--r--source/blender/blenkernel/SConscript8
1 files changed, 6 insertions, 2 deletions
diff --git a/source/blender/blenkernel/SConscript b/source/blender/blenkernel/SConscript
index 3221696d21a..e5c5d9bf097 100644
--- a/source/blender/blenkernel/SConscript
+++ b/source/blender/blenkernel/SConscript
@@ -14,9 +14,13 @@ incs += ' ' + env['BF_SDL_INC']
defs = ''
-if env['WITH_BF_INTERNATIONAL'] == 1:
- defs += 'WITH_FREETYPE2'
+if env['WITH_BF_VERSE']:
+ defs += ' WITH_VERSE'
+ incs += ' ' + env['BF_VERSE_INCLUDE']
+if env['WITH_BF_VERSE']:
+ defs += ' WITH_VERSE'
+
if env['WITH_BF_OPENEXR'] == 1:
defs += ' WITH_OPENEXR'