diff options
| author | 2021-06-26 20:24:18 +0100 | |
|---|---|---|
| committer | 2021-06-26 20:24:18 +0100 | |
| commit | f54f29198f87bf486da5cdead5a22111ec3ff0f9 (patch) | |
| tree | 42ab2d42b8589b062f011f5aca8118a66c3d3abf | |
| parent | Merge pull request #6528 from ReinUsesLisp/device-memory (diff) | |
| download | yuzu-f54f29198f87bf486da5cdead5a22111ec3ff0f9.tar.gz yuzu-f54f29198f87bf486da5cdead5a22111ec3ff0f9.tar.xz yuzu-f54f29198f87bf486da5cdead5a22111ec3ff0f9.zip | |
libusb: Apple is a POSIX system
| -rw-r--r-- | externals/libusb/CMakeLists.txt | 2 |
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 @@ | |||
| 1 | if (MINGW OR (${CMAKE_SYSTEM_NAME} MATCHES "Linux")) | 1 | if (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 | ||