You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is not enough to install pkg-config. One must explicitly use it to find a package.
The propper way would be to remove things like find_library(HAVE_LIBUSB_1_0 ...) and similar nonsense with a propper use of cmake/pkg-config, e.g. in a similar way like HIDAPI does it.
The text was updated successfully, but these errors were encountered:
In case you continue the work on the CMake improvement along with autotools improvement, maybe you want to take a look at the above recommendations. Thanks.
From the comment by @Youw here.
Yeap, this is the reason:
It is not enough to install pkg-config. One must explicitly use it to find a package.
The propper way would be to remove things like
find_library(HAVE_LIBUSB_1_0 ...)
and similar nonsense with a propper use of cmake/pkg-config, e.g. in a similar way like HIDAPI does it.The text was updated successfully, but these errors were encountered: