mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
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)
|