2009-04-12 19:56:59 +00:00
|
|
|
# -*- python -*-
|
|
|
|
|
|
|
|
Import('env')
|
2011-01-28 00:53:30 +00:00
|
|
|
import sys
|
2009-04-12 19:56:59 +00:00
|
|
|
|
|
|
|
files = [
|
2011-02-03 19:55:30 +00:00
|
|
|
'DSPTool.cpp',
|
2010-07-19 03:42:37 +00:00
|
|
|
]
|
2009-04-12 19:56:59 +00:00
|
|
|
|
|
|
|
libs = [
|
2011-02-04 01:02:06 +00:00
|
|
|
env['common'],
|
|
|
|
env['dspcore'],
|
2010-07-19 03:42:37 +00:00
|
|
|
]
|
2009-04-12 19:56:59 +00:00
|
|
|
|
2011-01-28 00:53:30 +00:00
|
|
|
if sys.platform == 'darwin':
|
|
|
|
frames = ['CoreFoundation']
|
|
|
|
else:
|
|
|
|
frames = []
|
|
|
|
|
|
|
|
env.Program('dsptool', files, LIBS = libs, FRAMEWORKS = frames)
|