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>2004-01-05 21:17:23 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2004-01-05 21:17:23 +0300
commita66108134c72bf05a02f8a76e6305efeb6f5eb62 (patch)
tree79db39eeef8ab3a6a37d9a81d164e4361ba3a01a /source/blender/ftfont
parenta017282b62294e8faaa4d95ff41e722398bfdd0a (diff)
- Added the SConscripts for ftfont and quicktime
- [win32] python_include was missing, there was a double python_libpath. Corrected - [win32] the soundsystem SConscript broke the win32 build.
Diffstat (limited to 'source/blender/ftfont')
-rw-r--r--source/blender/ftfont/SConscript23
1 files changed, 23 insertions, 0 deletions
diff --git a/source/blender/ftfont/SConscript b/source/blender/ftfont/SConscript
new file mode 100644
index 00000000000..ef359bebd46
--- /dev/null
+++ b/source/blender/ftfont/SConscript
@@ -0,0 +1,23 @@
+# Import the C flags set in the SConstruct file
+Import ('cflags')
+Import ('cxxflags')
+Import ('extra_includes')
+Import ('defines')
+
+source_files = ['intern/FTF_Api.cpp',
+ 'intern/FTF_TTFont.cpp']
+
+include_paths = ['.',
+ 'intern',
+ '../blenlib',
+ '../makesdna']
+
+print defines
+
+ftf_env = Environment()
+ftf_env.Append(CPPPATH = extra_includes)
+ftf_env.Append(CPPPATH = include_paths)
+ftf_env.Append(CCFLAGS = cflags)
+ftf_env.Append(CXXFLAGS = cxxflags)
+ftf_env.Append(CPPDEFINES = defines)
+ftf_env.Library (target='#/lib/blender_FTF', source=source_files)