diff options
author | bunnei <bunneidev@gmail.com> | 2020-08-04 18:44:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-04 18:44:07 -0400 |
commit | 36c7ddc18ce1c9087cda6f430d7b951ac4a5111c (patch) | |
tree | c509a71a5fe1a07469871d6df637265ef1f0858c | |
parent | efd1b57d03637a5a1cfa3ad2d8ae1f9bf5460eb4 (diff) | |
parent | 2e6828221494073f5315cec8cbb0a7816fdd6f2c (diff) |
Merge pull request #4440 from lioncash/json
CMakeLists: Update several libraries
-rw-r--r-- | CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7a49318aa..3282ae9d4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -159,15 +159,15 @@ macro(yuzu_find_packages) # Capitalization matters here. We need the naming to match the generated paths from Conan set(REQUIRED_LIBS # Cmake Pkg Prefix Version Conan Pkg - "Boost 1.71 boost/1.72.0" - "Catch2 2.11 catch2/2.11.0" + "Boost 1.73 boost/1.73.0" + "Catch2 2.13 catch2/2.13.0" "fmt 7.0 fmt/7.0.1" # can't use until https://github.com/bincrafters/community/issues/1173 #"libzip 1.5 libzip/1.5.2@bincrafters/stable" "lz4 1.8 lz4/1.9.2" - "nlohmann_json 3.7 nlohmann_json/3.7.3" + "nlohmann_json 3.8 nlohmann_json/3.8.0" "ZLIB 1.2 zlib/1.2.11" - "zstd 1.4 zstd/1.4.4" + "zstd 1.4 zstd/1.4.5" ) foreach(PACKAGE ${REQUIRED_LIBS}) |