mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
9a26cd01c6
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5346 8ced0084-cf51-0410-be5f-012b33b47a6e
20 lines
261 B
Python
20 lines
261 B
Python
# -*- 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)
|