mirror of
https://git.gfz-potsdam.de/naaice/tug.git
synced 2025-12-13 09:28:23 +01:00
16 lines
377 B
CMake
16 lines
377 B
CMake
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
DocTest
|
|
GIT_REPOSITORY https://github.com/doctest/doctest.git
|
|
GIT_TAG v2.4.9
|
|
)
|
|
|
|
FetchContent_MakeAvailable(DocTest)
|
|
|
|
#add_library(doctest INTERFACE)
|
|
#target_include_directories(doctest INTERFACE doctest)
|
|
|
|
add_executable(test setup.cpp testBoundaryCondition.cpp testDiffusion.cpp)
|
|
target_link_libraries(test doctest tug)
|