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 = [
|
2010-07-19 03:42:37 +00:00
|
|
|
'main.cpp',
|
|
|
|
]
|
2009-04-12 19:56:59 +00:00
|
|
|
|
|
|
|
libs = [
|
2011-01-29 14:58:32 +00:00
|
|
|
'core',
|
2010-07-19 03:42:37 +00:00
|
|
|
'common',
|
|
|
|
]
|
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)
|