summaryrefslogtreecommitdiff
path: root/externals/libusb
diff options
context:
space:
mode:
authorGravatar Ameer J2021-06-30 21:47:57 -0400
committerGravatar GitHub2021-06-30 21:47:57 -0400
commitbab400daafaed898840c979e04717934cb977135 (patch)
treec0e91c958cca196000744303532687e9a0cfc20f /externals/libusb
parentMerge pull request #6471 from lat9nq/dump-as-mod (diff)
parentcmake: Check dependencies for Linux Qt package (diff)
downloadyuzu-bab400daafaed898840c979e04717934cb977135.tar.gz
yuzu-bab400daafaed898840c979e04717934cb977135.tar.xz
yuzu-bab400daafaed898840c979e04717934cb977135.zip
Merge pull request #6459 from lat9nq/ubuntu-fixes
cmake: Improve Linux dependency checking for externals
Diffstat (limited to 'externals/libusb')
-rw-r--r--externals/libusb/CMakeLists.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/externals/libusb/CMakeLists.txt b/externals/libusb/CMakeLists.txt
index 8b9e6433c..151ddc462 100644
--- a/externals/libusb/CMakeLists.txt
+++ b/externals/libusb/CMakeLists.txt
@@ -5,6 +5,17 @@ if (MINGW OR (${CMAKE_SYSTEM_NAME} MATCHES "Linux") OR APPLE)
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
8 # Require autoconf and libtoolize here, rather than crash during compilation
9 find_program(AUTOCONF autoconf)
10 if ("${AUTOCONF}" STREQUAL "AUTOCONF-NOTFOUND")
11 message(FATAL_ERROR "Required program `autoconf` not found.")
12 endif()
13
14 find_program(LIBTOOLIZE libtoolize)
15 if ("${LIBTOOLIZE}" STREQUAL "LIBTOOLIZE-NOTFOUND")
16 message(FATAL_ERROR "Required program `libtoolize` not found.")
17 endif()
18
8 set(LIBUSB_PREFIX "${CMAKE_CURRENT_BINARY_DIR}/libusb") 19 set(LIBUSB_PREFIX "${CMAKE_CURRENT_BINARY_DIR}/libusb")
9 set(LIBUSB_SRC_DIR "${CMAKE_CURRENT_SOURCE_DIR}/libusb") 20 set(LIBUSB_SRC_DIR "${CMAKE_CURRENT_SOURCE_DIR}/libusb")
10 21