mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
98752f2a1e
functions accidentally added. Fixed the jitted ar register arithmetic. Added a CMakeList.txt for the UnitTests, but did not add the subdirectory to Source/CMakeLists.txt. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6687 8ced0084-cf51-0410-be5f-012b33b47a6e
11 lines
219 B
CMake
11 lines
219 B
CMake
set(LIBS dspcore
|
|
common)
|
|
|
|
set(SRCS AudioJitTests.cpp
|
|
DSPJitTester.cpp
|
|
UnitTests.cpp)
|
|
|
|
add_executable(tester ${SRCS})
|
|
target_link_libraries(tester ${LIBS})
|
|
#install(TARGETS ${EXEGUI} RUNTIME DESTINATION ${bindir})
|