summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Matías Locatti2021-12-22 16:10:21 -0300
committerGravatar GitHub2021-12-22 16:10:21 -0300
commite0193e2be501408d18ce8cdbb76e6b2a982f8374 (patch)
tree6fa2a14ba05ba1334ac3c9e4a4bd86562cb7878b
parentMerge pull request #7616 from bunnei/fix-get-idle-ticks (diff)
downloadyuzu-e0193e2be501408d18ce8cdbb76e6b2a982f8374.tar.gz
yuzu-e0193e2be501408d18ce8cdbb76e6b2a982f8374.tar.xz
yuzu-e0193e2be501408d18ce8cdbb76e6b2a982f8374.zip
Increase boost requirement to 1.78.0
Liu's finding, this allows to build yuzu on VS 2022. Ignore at will.
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 7d9056aa3..5168a16cb 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -229,7 +229,7 @@ elseif (${CMAKE_SYSTEM_NAME} STREQUAL "Linux" OR YUZU_USE_BUNDLED_BOOST)
229 include_directories(SYSTEM "${Boost_INCLUDE_DIRS}") 229 include_directories(SYSTEM "${Boost_INCLUDE_DIRS}")
230else() 230else()
231 message(STATUS "Boost 1.73.0 or newer not found, falling back to Conan") 231 message(STATUS "Boost 1.73.0 or newer not found, falling back to Conan")
232 list(APPEND CONAN_REQUIRED_LIBS "boost/1.73.0") 232 list(APPEND CONAN_REQUIRED_LIBS "boost/1.78.0")
233endif() 233endif()
234 234
235# Attempt to locate any packages that are required and report the missing ones in CONAN_REQUIRED_LIBS 235# Attempt to locate any packages that are required and report the missing ones in CONAN_REQUIRED_LIBS