summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2021-06-11 16:29:34 -0700
committerGravatar GitHub2021-06-11 16:29:34 -0700
commit8b5655a98e380a38436bb6002c55d9ba9cf8f16d (patch)
tree423e61e5b148f7b2d9c0bc5d47298587cc2295cc
parentMerge pull request #6451 from Morph1984/check-disk-space-dump (diff)
parentexternals: Don't set FOUND or VERSION on LIBUSB (diff)
downloadyuzu-8b5655a98e380a38436bb6002c55d9ba9cf8f16d.tar.gz
yuzu-8b5655a98e380a38436bb6002c55d9ba9cf8f16d.tar.xz
yuzu-8b5655a98e380a38436bb6002c55d9ba9cf8f16d.zip
Merge pull request #6453 from lat9nq/libusb-fix-msvc
externals: Don't set FOUND or VERSION on LIBUSB
Diffstat (limited to '')
-rw-r--r--externals/libusb/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/externals/libusb/CMakeLists.txt b/externals/libusb/CMakeLists.txt
index 06ce0fba7..7180fd42a 100644
--- a/externals/libusb/CMakeLists.txt
+++ b/externals/libusb/CMakeLists.txt
@@ -1,7 +1,7 @@
1set(LIBUSB_FOUND ON CACHE BOOL "libusb is present" FORCE)
2set(LIBUSB_VERSION "1.0.24" CACHE STRING "libusb version string" FORCE)
3
4if (MINGW OR (${CMAKE_SYSTEM_NAME} MATCHES "Linux")) 1if (MINGW OR (${CMAKE_SYSTEM_NAME} MATCHES "Linux"))
2 set(LIBUSB_FOUND ON CACHE BOOL "libusb is present" FORCE)
3 set(LIBUSB_VERSION "1.0.24" CACHE STRING "libusb version string" FORCE)
4
5 # GNU toolchains for some reason doesn't work with the later half of this CMakeLists after 5 # GNU toolchains for some reason doesn't work with the later half of this CMakeLists after
6 # updating to 1.0.24, so we do it the old-fashioned way for now. 6 # updating to 1.0.24, so we do it the old-fashioned way for now.
7 7