mirror of https://github.com/hmatuschek/libsdr
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
320 B
CMake
9 lines
320 B
CMake
set(test_SOURCES main.cc
|
|
cputime.cc unittest.cc buffertest.cc coreutilstest.cc coretest.cc)
|
|
set(test_HEADERS
|
|
cputime.hh unittest.hh buffertest.hh coreutilstest.hh coretest.hh)
|
|
|
|
add_executable(sdr_test ${test_SOURCES} ${test_HEADERS})
|
|
target_link_libraries(sdr_test ${LIBS} libsdr)
|
|
add_test(libsdr_test sdr_test)
|