link applications to shared library

This saves space on low-memory devices.

Signed-off-by: Steve Markgraf <steve@steve-m.de>
This commit is contained in:
Steve Markgraf 2012-05-29 22:00:54 +02:00
parent 4031d6ed04
commit b136a5ae9e
1 changed files with 3 additions and 3 deletions

View File

@ -67,15 +67,15 @@ endif()
add_executable(rtl_sdr rtl_sdr.c)
add_executable(rtl_tcp rtl_tcp.c)
add_executable(rtl_test rtl_test.c)
target_link_libraries(rtl_sdr rtlsdr_static
target_link_libraries(rtl_sdr rtlsdr_shared
${LIBUSB_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT}
)
target_link_libraries(rtl_tcp rtlsdr_static
target_link_libraries(rtl_tcp rtlsdr_shared
${LIBUSB_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT}
)
target_link_libraries(rtl_test rtlsdr_static
target_link_libraries(rtl_test rtlsdr_shared
${LIBUSB_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT}
)