diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2023-05-28 15:20:35 -0400 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2023-05-28 15:20:35 -0400 |
commit | 124dd86820278f8b0870280703ba2224e75d9c4d (patch) | |
tree | 6b1ef1f95a8573efe8e239828d10aa65355f780f | |
parent | 9950a388d23b69cd86bed5306a0c6b99d7c751cb (diff) |
CMakeLists: Rollback minimum to fmt 9
The mingw fmt package https://aur.archlinux.org/packages/mingw-w64-fmt has not been updated yet.
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7e8f35a4b..7276ac9dd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -212,7 +212,7 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/bin) # Enforce the search mode of non-required packages for better and shorter failure messages find_package(Boost 1.79.0 REQUIRED context) find_package(enet 1.3 MODULE) -find_package(fmt 10 REQUIRED) +find_package(fmt 9 REQUIRED) find_package(inih 52 MODULE COMPONENTS INIReader) find_package(LLVM MODULE COMPONENTS Demangle) find_package(lz4 REQUIRED) |