blob: 068542db93a29ade9fac95e9771a0b8f2339e190 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# -*- python -*-
Import('env')
import sys
dtenv = env.Clone()
files = [
'main.cpp',
]
libs = [
'dspcore',
'common',
]
dtenv.Append(CXXFLAGS = [ '-fPIC' ],
LIBS = libs)
if sys.platform == 'darwin':
dtenv['FRAMEWORKS'] = ['CoreFoundation', 'Cocoa', 'System']
dtenv.Program(dtenv['binary_dir'] + 'dsptool', files)
|