summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Morph2022-05-29 21:00:40 -0400
committerGravatar Morph2022-05-29 21:00:40 -0400
commitf3d352875470c5536ca0d87e6a7517cbf3541339 (patch)
tree0ae042a28de8ead3e7b00fc0e4f01337f8691fab
parentMerge pull request #8348 from JakobDev/metainfocontrol (diff)
downloadyuzu-f3d352875470c5536ca0d87e6a7517cbf3541339.tar.gz
yuzu-f3d352875470c5536ca0d87e6a7517cbf3541339.tar.xz
yuzu-f3d352875470c5536ca0d87e6a7517cbf3541339.zip
CMakeLists: Update boost to 1.79.0
This version of boost brings in a number of bug fixes, especially to the asio library. Details can be seen here: https://www.boost.org/users/history/version_1_79_0.html
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index fe12f3d23..8e3de90ff 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -218,8 +218,8 @@ if (Boost_FOUND)
218 list(APPEND Boost_LIBRARIES Boost::context) 218 list(APPEND Boost_LIBRARIES Boost::context)
219 endif() 219 endif()
220else() 220else()
221 message(STATUS "Boost 1.73.0 or newer not found, falling back to Conan") 221 message(STATUS "Boost 1.79.0 or newer not found, falling back to Conan")
222 list(APPEND CONAN_REQUIRED_LIBS "boost/1.78.0") 222 list(APPEND CONAN_REQUIRED_LIBS "boost/1.79.0")
223endif() 223endif()
224 224
225# Attempt to locate any packages that are required and report the missing ones in CONAN_REQUIRED_LIBS 225# Attempt to locate any packages that are required and report the missing ones in CONAN_REQUIRED_LIBS