Merge pull request #6753 from jbeich/libusb
cmake: unbreak libusb detection on FreeBSD
This commit is contained in:
commit
d923ec5805
1 changed files with 1 additions and 1 deletions
|
@ -496,7 +496,7 @@ endif()
|
||||||
# Ensure libusb is properly configured (based on dolphin libusb include)
|
# Ensure libusb is properly configured (based on dolphin libusb include)
|
||||||
if(NOT APPLE AND NOT YUZU_USE_BUNDLED_LIBUSB)
|
if(NOT APPLE AND NOT YUZU_USE_BUNDLED_LIBUSB)
|
||||||
include(FindPkgConfig)
|
include(FindPkgConfig)
|
||||||
if (PKG_CONFIG_FOUND)
|
if (PKG_CONFIG_FOUND AND NOT CMAKE_SYSTEM_NAME MATCHES "DragonFly|FreeBSD")
|
||||||
pkg_check_modules(LIBUSB QUIET libusb-1.0>=1.0.24)
|
pkg_check_modules(LIBUSB QUIET libusb-1.0>=1.0.24)
|
||||||
else()
|
else()
|
||||||
find_package(LibUSB)
|
find_package(LibUSB)
|
||||||
|
|
Loading…
Reference in a new issue