1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-07-27 09:32:26 -04:00
sdrangel/fcdhid/CMakeLists.txt
ZigaS 27aab58d92 MacOS(sierra) development environment.
Updated qmake project configs.
Deploy & Run script.
For now only hardware supported is HackRF.
2017-05-15 12:32:16 +02:00

34 lines
455 B
CMake

project(fcdhid)
set(fcdhid_SOURCES
../apple/apple_compat.c
hid-libusb.c
fcdhid.c
)
set(fcdhid_HEADERS
../apple/apple_compat.h
fcdhid.h
hid-libusb.h
hidapi.h
)
include_directories(
.
${CMAKE_CURRENT_BINARY_DIR}
)
#add_definitions(-DQT_PLUGIN)
add_definitions(-DQT_SHARED)
add_library(fcdhid SHARED
${fcdhid_SOURCES}
)
target_link_libraries(fcdhid
${LIBUSB_LIBRARIES}
${ICONV_LIBRARY}
)
install(TARGETS fcdhid DESTINATION lib)