2009-04-12 19:56:59 +00:00
|
|
|
# -*- python -*-
|
|
|
|
|
|
|
|
Import('env')
|
|
|
|
|
|
|
|
files = [
|
2010-07-19 03:42:37 +00:00
|
|
|
'main.cpp',
|
|
|
|
]
|
2009-04-12 19:56:59 +00:00
|
|
|
|
|
|
|
libs = [
|
2010-07-19 03:42:37 +00:00
|
|
|
'dspcore',
|
|
|
|
'common',
|
|
|
|
]
|
2009-04-12 19:56:59 +00:00
|
|
|
|
2010-07-20 04:19:25 +00:00
|
|
|
env.Program(env['binary_dir'] + 'dsptool', files, LIBS = libs)
|