From 39eb7dc3ad497292d6e7a29c32d4c917efa83969 Mon Sep 17 00:00:00 2001 From: hayati ayguen Date: Sun, 4 Dec 2016 23:17:41 +0100 Subject: [PATCH] added missing executables rtl_sdr, rtl_eeprom, rtl_rpcd Signed-off-by: hayati ayguen --- win32-qtcreator/CMakeLists.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/win32-qtcreator/CMakeLists.txt b/win32-qtcreator/CMakeLists.txt index 08572097..c9d68a71 100644 --- a/win32-qtcreator/CMakeLists.txt +++ b/win32-qtcreator/CMakeLists.txt @@ -83,6 +83,9 @@ target_link_libraries( rtl_fm ${LIBUSB} ) add_executable( rtl_tcp ../src/rtl_tcp.c ${RTLLIBFILES} ) target_link_libraries( rtl_tcp ${LIBUSB} ${SOCKLIBS} ) +add_executable( rtl_sdr ../src/rtl_sdr.c ${RTLLIBFILES} ) +target_link_libraries( rtl_sdr ${LIBUSB} ) + add_executable( rtl_adsb ../src/rtl_adsb.c ${RTLLIBFILES} ) target_link_libraries( rtl_adsb ${LIBUSB} ) @@ -91,3 +94,13 @@ target_link_libraries( rtl_power ${LIBUSB} ) add_executable( rtl_ir ../src/rtl_ir.c ${RTLLIBFILES} ) target_link_libraries( rtl_ir ${LIBUSB} ) + +add_executable( rtl_eeprom ../src/rtl_eeprom.c ${RTLLIBFILES} ) +target_link_libraries( rtl_eeprom ${LIBUSB} ) + +if (NOT WIN32) + # errors at compilation with MinGW, e.g. missing include sys/select.h + add_executable( rtl_rpcd ../src/rtl_rpcd.c ../src/rtlsdr_rpc_msg.c ${RTLLIBFILES} ) + target_link_libraries( rtl_rpcd ${LIBUSB} ) +endif() +