mirror of
https://github.com/merbanan/rtl_433.git
synced 2026-04-23 02:57:07 -04:00
13 lines
366 B
CMake
13 lines
366 B
CMake
########################################################################
|
|
# Compile test cases
|
|
########################################################################
|
|
add_executable(data-test data-test.c)
|
|
|
|
target_link_libraries(data-test data)
|
|
|
|
add_executable(baseband-test baseband-test.c ../src/baseband.c)
|
|
|
|
if(UNIX)
|
|
target_link_libraries(baseband-test m)
|
|
endif()
|