From 423109e8bdbceb5f5920806d9653a65fe051c9d2 Mon Sep 17 00:00:00 2001 From: Nicolas Vaagen <37600758+nicvagn@users.noreply.github.com> Date: Thu, 25 Jul 2024 16:55:43 -0600 Subject: [PATCH 1/2] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index b3d5d18..3a92657 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,8 @@ on Fedora: #### detailed ramblings on packages: + On arch, libusb backend was giving me some trouble. hidraw seems to be working + > requirements: - hidraw and spdlog are internal in src/thirdparty - in order to compile them on Debian you need: From 55ed972465b09e34c2b46f34841bf5a316bf7460 Mon Sep 17 00:00:00 2001 From: Nicolas Vaagen Date: Fri, 26 Jul 2024 15:30:47 -0600 Subject: [PATCH 2/2] removed usless comand from CMakeList --- src/CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 12a7e7c..c9832f2 100755 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -70,7 +70,6 @@ add_subdirectory("thirdparty/hidapi-git") if(CMAKE_HOST_APPLE) target_link_libraries(_niclink PRIVATE hidapi) elseif(CMAKE_HOST_UNIX) - link_libraries(hidapi_hidraw) target_link_libraries(_niclink PRIVATE hidapi_hidraw) elseif(CMAKE_HOST_WIN32) target_link_libraries(_niclink PRIVATE hidapi)