diff options
| author | 2022-04-25 00:05:28 -0400 | |
|---|---|---|
| committer | 2022-04-25 00:05:28 -0400 | |
| commit | 7709374f4ff4c64e19a067d7033ed58e64da2733 (patch) | |
| tree | d67791c4a64f19eac28c87d901440ce1e3b12497 | |
| parent | CMakeLists: Update Conan requirement to 1.45.0 (diff) | |
| download | yuzu-7709374f4ff4c64e19a067d7033ed58e64da2733.tar.gz yuzu-7709374f4ff4c64e19a067d7033ed58e64da2733.tar.xz yuzu-7709374f4ff4c64e19a067d7033ed58e64da2733.zip | |
CMakeLists: Download conan.cmake 0.18.1
Diffstat (limited to '')
| -rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9b1f7a6c8..dcd4011a5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -405,9 +405,7 @@ if (CONAN_REQUIRED_LIBS) | |||
| 405 | # Download conan.cmake automatically, you can also just copy the conan.cmake file | 405 | # Download conan.cmake automatically, you can also just copy the conan.cmake file |
| 406 | if(NOT EXISTS "${CMAKE_BINARY_DIR}/conan.cmake") | 406 | if(NOT EXISTS "${CMAKE_BINARY_DIR}/conan.cmake") |
| 407 | message(STATUS "Downloading conan.cmake from https://github.com/conan-io/cmake-conan") | 407 | message(STATUS "Downloading conan.cmake from https://github.com/conan-io/cmake-conan") |
| 408 | # TODO: Use a tagged release. The latest tagged release does not support VS2022 as of this writing. | 408 | file(DOWNLOAD "https://raw.githubusercontent.com/conan-io/cmake-conan/release/0.18/conan.cmake" "${CMAKE_BINARY_DIR}/conan.cmake") |
| 409 | file(DOWNLOAD "https://raw.githubusercontent.com/conan-io/cmake-conan/43e385830ee35377dbd2dcbe8d5a9e750301ea00/conan.cmake" | ||
| 410 | "${CMAKE_BINARY_DIR}/conan.cmake") | ||
| 411 | endif() | 409 | endif() |
| 412 | include(${CMAKE_BINARY_DIR}/conan.cmake) | 410 | include(${CMAKE_BINARY_DIR}/conan.cmake) |
| 413 | 411 | ||