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})
|