From bcd5d1c9ed084dec77b9801938016791bd4aa38d Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Fri, 6 May 2005 13:37:18 +0000 Subject: * 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. --- source/blender/makesdna/intern/SConscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source/blender/makesdna/intern/SConscript') diff --git a/source/blender/makesdna/intern/SConscript b/source/blender/makesdna/intern/SConscript index 4046819ffd5..10c7eda9730 100644 --- a/source/blender/makesdna/intern/SConscript +++ b/source/blender/makesdna/intern/SConscript @@ -1,5 +1,6 @@ #!/usr/bin/python import sys +import os Import ('cflags') Import ('defines') @@ -8,7 +9,7 @@ Import ('user_options_dict') # TODO: make sure the makesdna program does not get installed on the system. source_files = ['makesdna.c'] -makesdna_tool = Environment (CCFLAGS='-DBASE_HEADER="\\"source/blender/makesdna/\\"" ') +makesdna_tool = Environment (ENV = os.environ, CCFLAGS='-DBASE_HEADER="\\"source/blender/makesdna/\\"" ') makesdna_tool.Append (CPPPATH = ['#/intern/guardedalloc', '..']) -- cgit v1.2.3