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.
20 lines
504 B
CMake
20 lines
504 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)
|
|
|
|
add_executable(sdr_rtty sdr_rtty.cc)
|
|
target_link_libraries(sdr_rtty ${LIBS} libsdr)
|
|
|
|
ENDIF(SDR_WITH_PORTAUDIO)
|
|
|
|
|