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.
libsdr/examples/CMakeLists.txt

20 lines
612 B
CMake

IF(SDR_WITH_PORTAUDIO)
add_executable(sdr_wavplay sdr_wavplay.cc)
target_link_libraries(sdr_wavplay ${LIBS} libsdr)
add_executable(sdr_fm sdr_fm.cc)
target_link_libraries(sdr_fm ${LIBS} libsdr)
add_executable(sdr_rec sdr_rec.cc)
target_link_libraries(sdr_rec ${LIBS} libsdr)
add_executable(sdr_afsk1200 sdr_afsk1200.cc)
target_link_libraries(sdr_afsk1200 ${LIBS} libsdr)
qt5_wrap_cpp(sdr_schumann_MOC_SOURCES schumann.hh)
add_executable(sdr_schumann sdr_schumann.cc schumann.cc ${sdr_schumann_MOC_SOURCES})
target_link_libraries(sdr_schumann ${LIBS} libsdr libsdr-gui)
ENDIF(SDR_WITH_PORTAUDIO)