Merge pull request #4295 from MerryMage/macOS-libusb

CMakeLists: Do not search for system libusb on macOS
This commit is contained in:
bunnei 2020-07-11 22:47:52 -04:00 committed by GitHub
commit f16a94fb39
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -330,14 +330,15 @@ elseif(SDL2_FOUND)
endif()
# Ensure libusb is properly configured (based on dolphin libusb include)
include(FindPkgConfig)
find_package(LibUSB)
if(NOT APPLE)
include(FindPkgConfig)
find_package(LibUSB)
endif()
if (NOT LIBUSB_FOUND)
add_subdirectory(externals/libusb)
set(LIBUSB_LIBRARIES usb)
endif()
# Prefer the -pthread flag on Linux.
set(THREADS_PREFER_PTHREAD_FLAG ON)
find_package(Threads REQUIRED)