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

add install test

This commit is contained in:
Lars Melchior 2020-04-13 17:30:09 +02:00
parent c2d7dff1a8
commit b0384f889a
2 changed files with 39 additions and 4 deletions

View file

@ -7,6 +7,7 @@ project(GreeterTests
# ---- Options ----
option(ENABLE_TEST_COVERAGE "Enable test coverage" OFF)
option(TEST_INSTALLED_VERSION "Test the version found by find_package" OFF)
# ---- Dependencies ----
@ -19,10 +20,14 @@ CPMAddPackage(
GIT_TAG 2.3.2
)
CPMAddPackage(
NAME Greeter
SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR}/..
)
if (TEST_INSTALLED_VERSION)
find_package(Greeter)
else()
CPMAddPackage(
NAME Greeter
SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR}/..
)
endif()
CPMAddPackage(
NAME Format.cmake