mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
8c7bdebf1e
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5923 8ced0084-cf51-0410-be5f-012b33b47a6e
16 lines
205 B
Python
16 lines
205 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
|
|
files = [
|
|
"AudioJitTests.cpp",
|
|
"DSPJitTester.cpp",
|
|
"UnitTests.cpp",
|
|
]
|
|
|
|
libs = [
|
|
'dspcore', 'common',
|
|
]
|
|
|
|
env.Program(env['binary_dir'] + 'tester', files, LIBS = libs)
|