Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichel Selten <michel@mselten.demon.nl>2004-02-15 22:25:32 +0300
committerMichel Selten <michel@mselten.demon.nl>2004-02-15 22:25:32 +0300
commit9330e553e88fe77b3a08cfac3a13046031b58e56 (patch)
tree69b9155aad185dc347bef0dcffaf8c538980fb72 /source/blender/SConscript
parent2fbf2b3775405566eb5906da2c7223eb9b626427 (diff)
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.
Diffstat (limited to 'source/blender/SConscript')
-rw-r--r--source/blender/SConscript35
1 files changed, 17 insertions, 18 deletions
diff --git a/source/blender/SConscript b/source/blender/SConscript
index 3b01792081d..0efdb463ba9 100644
--- a/source/blender/SConscript
+++ b/source/blender/SConscript
@@ -1,29 +1,28 @@
-Import ('use_quicktime')
-Import ('use_international')
+Import ('user_options_dict')
-SConscript(['blenloader/SConscript',
+SConscript(['avi/SConscript',
+ 'blenkernel/SConscript',
+ 'blenlib/SConscript',
+ 'blenloader/SConscript',
+ 'blenpluginapi/SConscript',
'deflate/SConscript',
- 'inflate/SConscript',
- 'writestreamglue/SConscript',
- 'readstreamglue/SConscript',
- 'writeblenfile/SConscript',
- 'readblenfile/SConscript',
- 'avi/SConscript',
'imbuf/SConscript',
'img/SConscript',
- 'render/SConscript',
- 'radiosity/SConscript',
- 'blenlib/SConscript',
- 'blenkernel/SConscript',
- 'blenpluginapi/SConscript',
- 'python/SConscript',
+ 'inflate/SConscript',
'makesdna/SConscript',
- 'src/SConscript',
+ 'python/SConscript',
+ 'radiosity/SConscript',
+ 'readblenfile/SConscript',
+ 'readstreamglue/SConscript',
+ 'render/SConscript',
'renderconverter/SConscript',
+ 'src/SConscript',
+ 'writeblenfile/SConscript',
+ 'writestreamglue/SConscript',
'yafray/SConscript'])
-if use_international == 'true':
+if user_options_dict['USE_INTERNATIONAL'] == 1:
SConscript (['ftfont/SConscript'])
-if use_quicktime == 'true':
+if user_options_dict['USE_QUICKTIME'] == 1:
SConscript (['quicktime/SConscript'])