2004-05-16 13:07:20 +00:00
|
|
|
#!/usr/bin/python
|
2004-02-15 19:25:32 +00:00
|
|
|
Import ('user_options_dict')
|
2004-02-29 21:40:48 +00:00
|
|
|
Import ('library_env')
|
|
|
|
|
|
|
|
|
|
blenloader_env = library_env.Copy ()
|
2004-01-04 21:11:59 +00:00
|
|
|
|
|
|
|
|
source_files = ['intern/genfile.c',
|
|
|
|
|
'intern/readblenentry.c',
|
2004-09-05 13:53:55 +00:00
|
|
|
'intern/undofile.c',
|
2004-01-04 21:11:59 +00:00
|
|
|
'intern/readfile.c',
|
|
|
|
|
'intern/writefile.c']
|
|
|
|
|
|
|
|
|
|
blenloader_env.Append (CPPPATH = ['.',
|
2005-08-04 16:05:28 +00:00
|
|
|
'../blenloader',
|
2004-01-04 21:11:59 +00:00
|
|
|
'#/intern/guardedalloc',
|
|
|
|
|
'../blenlib',
|
|
|
|
|
'../blenkernel',
|
|
|
|
|
'../makesdna',
|
|
|
|
|
'../readblenfile',
|
|
|
|
|
'../include',
|
|
|
|
|
'../python',
|
|
|
|
|
'../../kernel/gen_messaging',
|
|
|
|
|
'../render/extern/include',
|
|
|
|
|
'../writestreamglue',
|
|
|
|
|
'../readstreamglue'])
|
|
|
|
|
|
2004-02-15 19:25:32 +00:00
|
|
|
blenloader_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_blenloader', source=source_files)
|
2005-07-28 18:11:10 +00:00
|
|
|
blenloader_env.Append (CPPPATH = user_options_dict['Z_INCLUDE'])
|