mirror of
https://github.com/apple/foundationdb.git
synced 2025-06-02 11:15:50 +08:00
19 lines
524 B
CMake
19 lines
524 B
CMake
# Download doctest repo.
|
|
include(ExternalProject)
|
|
find_package(Git REQUIRED)
|
|
|
|
ExternalProject_Add(
|
|
doctest
|
|
PREFIX ${CMAKE_BINARY_DIR}/doctest
|
|
GIT_REPOSITORY https://github.com/onqtam/doctest.git
|
|
GIT_TAG 1c8da00c978c19e00a434b2b1f854fcffc9fba35 # v2.4.0
|
|
TIMEOUT 10
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_COMMAND ""
|
|
INSTALL_COMMAND ""
|
|
LOG_DOWNLOAD ON
|
|
)
|
|
|
|
ExternalProject_Get_Property(doctest source_dir)
|
|
set(DOCTEST_INCLUDE_DIR ${source_dir}/doctest CACHE INTERNAL "Path to include folder for doctest")
|