1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-09-05 16:31:01 +02:00

formatting updates

This commit is contained in:
Lars Melchior 2021-03-02 20:22:08 +01:00
parent ced140e2f6
commit 02be04e80d
2 changed files with 7 additions and 4 deletions

View file

@ -10,8 +10,12 @@ include(../cmake/tools.cmake)
include(../cmake/CPM.cmake)
option(CXXOPTS_BUILD_TESTS "" NO)
CPMAddPackage("gh:jarro2783/cxxopts@2.2.0")
CPMAddPackage(
GITHUB_REPOSITORY jarro2783/cxxopts
VERSION 2.2.0
OPTIONS "CXXOPTS_BUILD_TESTS NO"
)
CPMAddPackage(NAME Greeter SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR}/..)
# ---- Create standalone executable ----