update CPM.cmake and use new shorthand syntax (#87)

This commit is contained in:
Lars Melchior 2021-02-22 21:55:02 +01:00 committed by GitHub
parent 573663dc15
commit 27c17d63cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 19 deletions

View file

@ -24,17 +24,13 @@ endif()
include(cmake/CPM.cmake)
# PackageProject.cmake will be used to make our target installable
CPMAddPackage(
NAME PackageProject.cmake
GITHUB_REPOSITORY TheLartians/PackageProject.cmake
VERSION 1.5.0
)
CPMAddPackage("gh:TheLartians/PackageProject.cmake@1.4.1")
CPMAddPackage(
NAME fmt
GIT_TAG 7.1.3
GITHUB_REPOSITORY fmtlib/fmt # to get an installable target
OPTIONS "FMT_INSTALL YES"
GITHUB_REPOSITORY fmtlib/fmt
OPTIONS "FMT_INSTALL YES" # create an installable target
)
# ---- Add source files ----