mirror of
https://github.com/RPCS3/hidapi.git
synced 2026-08-28 03:39:58 -04:00
26b5bb0ccf
- native implementations for hidraw/libusb/macOS; - HID Report Descriptor reconstruction from HIDP_PREPARSED_DATA on Windows; - unit-tests for some known devices for `hid_winapi_descriptor_reconstruct_pp_data`; - support for ASAN builds (mainly to check the `hid_winapi_descriptor_reconstruct_pp_data`/its unit-tests;
16 lines
325 B
CMake
16 lines
325 B
CMake
project(pp_data_dump C)
|
|
|
|
add_executable(pp_data_dump pp_data_dump.c)
|
|
set_target_properties(pp_data_dump
|
|
PROPERTIES
|
|
C_STANDARD 11
|
|
C_STANDARD_REQUIRED TRUE
|
|
)
|
|
target_link_libraries(pp_data_dump
|
|
PRIVATE hidapi_winapi
|
|
)
|
|
|
|
install(TARGETS pp_data_dump
|
|
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
|
|
)
|