summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorGravatar Morph2023-05-28 15:00:05 -0400
committerGravatar Morph2023-05-28 15:05:55 -0400
commit9950a388d23b69cd86bed5306a0c6b99d7c751cb (patch)
treeec088ab0afd351019c2748dda74f6cc731330c40 /CMakeLists.txt
parentMerge pull request #10475 from ameerj/microprofile-workaround (diff)
downloadyuzu-9950a388d23b69cd86bed5306a0c6b99d7c751cb.tar.gz
yuzu-9950a388d23b69cd86bed5306a0c6b99d7c751cb.tar.xz
yuzu-9950a388d23b69cd86bed5306a0c6b99d7c751cb.zip
externals: Update to fmt 10 and add format_as formatter for BitField
Implicit conversions are now disallowed in fmt 10. Use format_as to convert to the underlying type.
Diffstat (limited to '')
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 7276ac9dd..7e8f35a4b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -212,7 +212,7 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/bin)
212# Enforce the search mode of non-required packages for better and shorter failure messages 212# Enforce the search mode of non-required packages for better and shorter failure messages
213find_package(Boost 1.79.0 REQUIRED context) 213find_package(Boost 1.79.0 REQUIRED context)
214find_package(enet 1.3 MODULE) 214find_package(enet 1.3 MODULE)
215find_package(fmt 9 REQUIRED) 215find_package(fmt 10 REQUIRED)
216find_package(inih 52 MODULE COMPONENTS INIReader) 216find_package(inih 52 MODULE COMPONENTS INIReader)
217find_package(LLVM MODULE COMPONENTS Demangle) 217find_package(LLVM MODULE COMPONENTS Demangle)
218find_package(lz4 REQUIRED) 218find_package(lz4 REQUIRED)