C Make Lists
C Make Lists
0)
project(hidusb-relay)
if(WIN32)
message("Building against hid")
set(SOURCES hiddata_mswin.c)
set(LIBRARIES hid setupapi)
elseif(${CMAKE_SYSTEM_NAME} STREQUAL Darwin AND NOT USE_LIBUSB_ON_MACOS)
option(USE_LIBUSB_ON_MACOS "Use libusb instead of IOKit on MacOS" ON)
set(SOURCES hiddata_osx.c)
set(LIBRARIES
"-framework CoreFoundation"
"-framework IOKit"
)
else()
set(SOURCES hiddata_libusb01.c)
include(FindPkgConfig)
pkg_check_modules(LIBUSB REQUIRED libusb)
include_directories(${LIBUSB_INCLUDE_DIRS})
set(LIBRARIES ${LIBUSB_LIBRARIES})
endif()
add_executable(hidusb-relay-cmd usbrelay-cmd.c)
target_link_libraries(hidusb-relay-cmd hidusb-relay)