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:
Diffstat (limited to 'source/blender/readblenfile/SConscript')
-rw-r--r--source/blender/readblenfile/SConscript20
1 files changed, 4 insertions, 16 deletions
diff --git a/source/blender/readblenfile/SConscript b/source/blender/readblenfile/SConscript
index 1f0909b1f84..901871ad298 100644
--- a/source/blender/readblenfile/SConscript
+++ b/source/blender/readblenfile/SConscript
@@ -1,20 +1,8 @@
#!/usr/bin/python
-Import ('user_options_dict')
-Import ('library_env')
+Import ('env')
-readblenfile_env = library_env.Copy ()
+sources = env.Glob('intern/*.c')
-source_files = ['intern/BLO_readblenfile.c']
+incs = '. ../blenloader ../blenloader/intern ../blenkernel ../blenlib ../makesdna ../../kernel/gen_messaging'
-readblenfile_env.Append (CPPPATH = ['.',
-
-'../readblenfile',
- '../readstreamglue',
- '../blenloader',
- '../blenloader/intern',
- '../blenkernel',
- '../blenlib',
- '../makesdna',
- '../../kernel/gen_messaging'])
-
-readblenfile_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_readblenfile', source=source_files)
+env.BlenderLib ( 'blender_readblenfile', sources, Split(incs), [], libtype='common', priority = 0 )