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/SConscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/SConscript') diff --git a/source/SConscript b/source/SConscript index 188c7c30051..e0005569caf 100644 --- a/source/SConscript +++ b/source/SConscript @@ -1,6 +1,6 @@ -Import ('use_gameengine') +Import ('user_options_dict') SConscript(['blender/SConscript', 'kernel/SConscript']) -if use_gameengine == 'true': +if user_options_dict['BUILD_GAMEENGINE'] == 1: SConscript (['gameengine/SConscript']) -- cgit v1.2.3