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. --- intern/memutil/SConscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'intern/memutil/SConscript') diff --git a/intern/memutil/SConscript b/intern/memutil/SConscript index 5387d76f8f8..6bc45f62088 100644 --- a/intern/memutil/SConscript +++ b/intern/memutil/SConscript @@ -4,6 +4,7 @@ memutil_env = Environment() Import ('cflags') Import ('cxxflags') Import ('defines') +Import ('user_options_dict') memutil_env.Append (CCFLAGS = cflags) memutil_env.Append (CXXFLAGS = cxxflags) memutil_env.Append (CPPDEFINES = defines) @@ -12,4 +13,4 @@ source_files = ['intern/MEM_RefCountedC-Api.cpp'] memutil_env.Append (CPPPATH = ['.']) -memutil_env.Library (target='#/lib/blender_MEM', source=source_files) +memutil_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_MEM', source=source_files) -- cgit v1.2.3