1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-08-30 21:51:12 +02:00

Fix inconsistent fmt version

fmt version is still 8.1.1 in `DEPENDENCIES` of `packageProject`, update it to 9.1.0
This commit is contained in:
Long Deng 2023-02-28 14:58:22 +08:00 committed by GitHub
parent 84ed75ca7d
commit bd59117736
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -74,5 +74,5 @@ packageProject(
INCLUDE_DESTINATION include/${PROJECT_NAME}-${PROJECT_VERSION} INCLUDE_DESTINATION include/${PROJECT_NAME}-${PROJECT_VERSION}
VERSION_HEADER "${VERSION_HEADER_LOCATION}" VERSION_HEADER "${VERSION_HEADER_LOCATION}"
COMPATIBILITY SameMajorVersion COMPATIBILITY SameMajorVersion
DEPENDENCIES "fmt 8.1.1" DEPENDENCIES "fmt 9.1.0"
) )