Dont build our dependencies, they have header only implementations in their repos.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-02-05 13:48:13 +01:00
parent f5690363da
commit ea2fa7b547

View File

@@ -46,16 +46,19 @@ CPMAddPackage(
NAME backward
GITHUB_REPOSITORY bombela/backward-cpp
VERSION 1.6
DOWNLOAD_ONLY YES
)
CPMAddPackage(
NAME doctest
GITHUB_REPOSITORY doctest/doctest
GIT_TAG 2.4.0
DOWNLOAD_ONLY YES
)
CPMAddPackage(
NAME pcg-cpp
GITHUB_REPOSITORY imneme/pcg-cpp
GIT_TAG master
DOWNLOAD_ONLY YES
)
target_include_directories(Arbutils PUBLIC ${backward_SOURCE_DIR})
target_include_directories(Arbutils PUBLIC ${doctest_SOURCE_DIR}/doctest)