mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-15 18:49:11 +01: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)
|