2004-05-16 13:07:20 +00:00
|
|
|
#!/usr/bin/python
|
2004-01-05 18:17:23 +00:00
|
|
|
Import ('extra_includes')
|
2004-02-15 19:25:32 +00:00
|
|
|
Import ('user_options_dict')
|
2004-02-29 21:40:48 +00:00
|
|
|
Import ('library_env')
|
|
|
|
|
|
|
|
|
|
quicktime_env = library_env.Copy ()
|
|
|
|
|
|
2004-01-05 18:17:23 +00:00
|
|
|
quicktime_env.Append (CPPPATH = extra_includes)
|
|
|
|
|
|
|
|
|
|
source_files = ['apple/quicktime_import.c',
|
|
|
|
|
'apple/quicktime_export.c']
|
|
|
|
|
|
|
|
|
|
quicktime_env.Append (CPPPATH = ['.',
|
2005-08-04 16:05:28 +00:00
|
|
|
'../quicktime',
|
2004-01-05 18:17:23 +00:00
|
|
|
'../makesdna',
|
|
|
|
|
'#/intern/guardedalloc',
|
|
|
|
|
'../blenlib',
|
|
|
|
|
'../blenkernel',
|
|
|
|
|
'../avi',
|
|
|
|
|
'../imbuf',
|
|
|
|
|
'../imbuf/intern',
|
2004-04-16 16:36:11 +00:00
|
|
|
'../blenloader',
|
2004-12-12 16:24:08 +00:00
|
|
|
'../render/extern/include',
|
|
|
|
|
'../include'])
|
2004-01-05 18:17:23 +00:00
|
|
|
|
2004-02-15 19:25:32 +00:00
|
|
|
quicktime_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_quicktime', source=source_files)
|