diff options
author | MerryMage <git@mary.rs> | 2021-06-26 20:24:18 +0100 |
---|---|---|
committer | MerryMage <git@mary.rs> | 2021-06-26 20:24:18 +0100 |
commit | f54f29198f87bf486da5cdead5a22111ec3ff0f9 (patch) | |
tree | 42ab2d42b8589b062f011f5aca8118a66c3d3abf | |
parent | d9fb6dbd37200487424249042224ac4268b8752b (diff) |
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 @@ -if (MINGW OR (${CMAKE_SYSTEM_NAME} MATCHES "Linux")) +if (MINGW OR (${CMAKE_SYSTEM_NAME} MATCHES "Linux") OR APPLE) set(LIBUSB_FOUND ON CACHE BOOL "libusb is present" FORCE) set(LIBUSB_VERSION "1.0.24" CACHE STRING "libusb version string" FORCE) |