2004-05-16 13:07:20 +00:00
|
|
|
#!/usr/bin/python
|
2006-02-04 14:15:10 +00:00
|
|
|
Import ('env')
|
2004-01-05 18:17:23 +00:00
|
|
|
|
2009-11-18 15:54:25 +00:00
|
|
|
|
|
|
|
|
if env['USE_QTKIT']:
|
|
|
|
|
source_files = ['apple/qtkit_import.m',
|
|
|
|
|
'apple/qtkit_export.m']
|
|
|
|
|
else:
|
|
|
|
|
source_files = ['apple/quicktime_import.c',
|
2004-01-05 18:17:23 +00:00
|
|
|
'apple/quicktime_export.c']
|
|
|
|
|
|
2009-11-18 15:54:25 +00:00
|
|
|
|
2006-02-04 14:15:10 +00:00
|
|
|
incs = ['.',
|
|
|
|
|
'../quicktime',
|
|
|
|
|
'../makesdna',
|
2009-12-02 14:39:49 +00:00
|
|
|
'../makesrna',
|
|
|
|
|
'../windowmanager',
|
2006-02-04 14:15:10 +00:00
|
|
|
'#/intern/guardedalloc',
|
|
|
|
|
'../blenlib',
|
|
|
|
|
'../blenkernel',
|
|
|
|
|
'../avi',
|
|
|
|
|
'../imbuf',
|
|
|
|
|
'../imbuf/intern',
|
|
|
|
|
'../blenloader',
|
|
|
|
|
'../render/extern/include',
|
2007-12-31 10:18:26 +00:00
|
|
|
'../editors/include']
|
2006-02-04 14:15:10 +00:00
|
|
|
|
|
|
|
|
incs.append(env['BF_QUICKTIME_INC'])
|
2004-01-05 18:17:23 +00:00
|
|
|
|
2009-09-05 01:58:02 +00:00
|
|
|
types = ['core','player']
|
|
|
|
|
priorities = [200,235]
|
2006-02-07 22:24:41 +00:00
|
|
|
|
2009-12-03 12:16:00 +00:00
|
|
|
defs=['WITH_QUICKTIME']
|
|
|
|
|
|
|
|
|
|
if env['WITH_GHOST_COCOA']:
|
|
|
|
|
defs.append('GHOST_COCOA')
|
|
|
|
|
|
|
|
|
|
env.BlenderLib ('bf_quicktime', sources=source_files, includes=incs, defines=defs, libtype=types, priority=priorities)
|