Skip to content

Commit

Permalink
added missing executables rtl_sdr, rtl_eeprom, rtl_rpcd
Browse files Browse the repository at this point in the history
Signed-off-by: hayati ayguen <[email protected]>
  • Loading branch information
hayguen committed Dec 4, 2016
1 parent 15a71da commit 39eb7dc
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions win32-qtcreator/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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} )

Expand All @@ -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()

0 comments on commit 39eb7dc

Please sign in to comment.