Files
dolphin/Source/UnitTests/SConscript
T

20 lines
258 B
Python
Raw Normal View History

2010-04-12 15:11:24 +00:00
# -*- python -*-
Import('env')
import sys
unitenv = env.Clone()
files = [
"AudioJitTests.cpp",
"DSPJitTester.cpp",
"UnitTests.cpp",
]
2010-06-10 14:18:21 +00:00
libs = [
'dspcore', 'common',
2010-04-12 15:11:24 +00:00
]
2010-06-10 14:18:21 +00:00
unitenv.Append(LIBS = libs)
2010-04-12 15:11:24 +00:00
unitenv.Program(env['binary_dir'] + 'tester', files)