1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-19 03:16:38 -04:00
sdrangel/fcdhid/CMakeLists.txt
Davide Gerhard f61d1c3908
add gettimeofday() compatibility function for windows
plugins that need that:
  - remotesink
  - remotesource
2019-05-28 15:19:19 +02:00

31 lines
458 B
CMake

project(fcdhid)
set(fcdhid_SOURCES
../custom/apple/apple_compat.c
hid-libusb.c
fcdhid.c
)
set(fcdhid_HEADERS
fcdhid.h
hid-libusb.h
hidapi.h
)
include_directories(
${LIBUSB_INCLUDE_DIR}
${ICONV_INCLUDE_DIR}
${CUSTOM_APPLE_INCLUDE}
)
add_library(fcdhid SHARED
${fcdhid_SOURCES}
)
target_link_libraries(fcdhid
${LIBUSB_LIBRARIES}
${ICONV_LIBRARY}
)
install(TARGETS fcdhid DESTINATION ${INSTALL_LIB_DIR})