From 9330e553e88fe77b3a08cfac3a13046031b58e56 Mon Sep 17 00:00:00 2001 From: Michel Selten Date: Sun, 15 Feb 2004 19:25:32 +0000 Subject: SCons updates * libraries are now generated in [BUILD_DIR]/lib * passed the user_options to all libraries now. This means I could remove a couple of Export/Import lines. * Changed the order in source/blender/src/SConscript and source/gameengine/SConscript. All libraries are now sorted alphabetically. This has no impact on the build process. --- source/blender/writestreamglue/SConscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source/blender/writestreamglue') diff --git a/source/blender/writestreamglue/SConscript b/source/blender/writestreamglue/SConscript index 455f53b3306..aa2d4d10e2e 100644 --- a/source/blender/writestreamglue/SConscript +++ b/source/blender/writestreamglue/SConscript @@ -5,6 +5,7 @@ Import ('cflags') Import ('cxxflags') Import ('defines') Import ('extra_includes') +Import ('user_options_dict') wrstrgl_env.Append (CCFLAGS = cflags) wrstrgl_env.Append (CXXFLAGS = cxxflags) wrstrgl_env.Append (CPPDEFINES = defines) @@ -21,4 +22,4 @@ wrstrgl_env.Append (CPPPATH = ['.', '../../kernel/gen_messaging']) wrstrgl_env.Append (CPPPATH = extra_includes) -wrstrgl_env.Library (target='#/lib/blender_writestreamglue', source=source_files) +wrstrgl_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_writestreamglue', source=source_files) -- cgit v1.2.3