From a66108134c72bf05a02f8a76e6305efeb6f5eb62 Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Mon, 5 Jan 2004 18:17:23 +0000 Subject: - 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. --- source/blender/ftfont/SConscript | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 source/blender/ftfont/SConscript (limited to 'source/blender/ftfont') 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) -- cgit v1.2.3