summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar MerryMage2021-06-26 20:24:18 +0100
committerGravatar MerryMage2021-06-26 20:24:18 +0100
commitf54f29198f87bf486da5cdead5a22111ec3ff0f9 (patch)
tree42ab2d42b8589b062f011f5aca8118a66c3d3abf
parentMerge pull request #6528 from ReinUsesLisp/device-memory (diff)
downloadyuzu-f54f29198f87bf486da5cdead5a22111ec3ff0f9.tar.gz
yuzu-f54f29198f87bf486da5cdead5a22111ec3ff0f9.tar.xz
yuzu-f54f29198f87bf486da5cdead5a22111ec3ff0f9.zip
libusb: Apple is a POSIX system
-rw-r--r--externals/libusb/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/externals/libusb/CMakeLists.txt b/externals/libusb/CMakeLists.txt
index 7180fd42a..8b9e6433c 100644
--- a/externals/libusb/CMakeLists.txt
+++ b/externals/libusb/CMakeLists.txt
@@ -1,4 +1,4 @@
1if (MINGW OR (${CMAKE_SYSTEM_NAME} MATCHES "Linux")) 1if (MINGW OR (${CMAKE_SYSTEM_NAME} MATCHES "Linux") OR APPLE)
2 set(LIBUSB_FOUND ON CACHE BOOL "libusb is present" FORCE) 2 set(LIBUSB_FOUND ON CACHE BOOL "libusb is present" FORCE)
3 set(LIBUSB_VERSION "1.0.24" CACHE STRING "libusb version string" FORCE) 3 set(LIBUSB_VERSION "1.0.24" CACHE STRING "libusb version string" FORCE)
4 4