summaryrefslogtreecommitdiff
path: root/Source/UnitTests/SConscript
blob: 5757534fdb9afe9f585014d47ebaa71e2fc92ef3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- python -*- 

Import('env')
import sys

unitenv = env.Clone()

files = [
	"AudioJitTests.cpp",
	"DSPJitTester.cpp",
	"UnitTests.cpp",
	]

libs = [ 
	'dspcore', 'common', 
]

unitenv.Append( LIBS = libs)
unitenv.Program(env['binary_dir'] + 'tester', files)