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>2005-05-06 17:37:18 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2005-05-06 17:37:18 +0400
commitbcd5d1c9ed084dec77b9801938016791bd4aa38d (patch)
tree8aeb942465e2162843ecad078e5ac64a8e4030c8 /extern/SConscript
parentc68c3c253f9fd0c5baed69248a15c13e0ec9aad0 (diff)
* integrate bFTGL with Scons
* add some ENV = os.environ's here and there (help those who have msvc toolkit installed) Note for OSX users: check from your config.opts the correct info for the precompiled ftgl lib is used.
Diffstat (limited to 'extern/SConscript')
-rw-r--r--extern/SConscript12
1 files changed, 11 insertions, 1 deletions
diff --git a/extern/SConscript b/extern/SConscript
index 4d58ee6447d..f5f4267988d 100644
--- a/extern/SConscript
+++ b/extern/SConscript
@@ -1,3 +1,13 @@
#!/usr/bin/python
+
+Import('user_options_dict')
+
+
+print "externs..."
SConscript(['qhull/SConscript',
- 'solid/SConscript']) \ No newline at end of file
+ 'solid/SConscript'])
+
+
+if user_options_dict['USE_INTERNATIONAL'] == 1:
+ print "bftgl"
+ SConscript(['bFTGL/SConscript']) \ No newline at end of file