Skip to content

Commit 68ce375

Browse files
committed
Add Catch2 test framework. Add example test. Add tests build instructions.
1 parent 9772905 commit 68ce375

File tree

5 files changed

+13337
-0
lines changed

5 files changed

+13337
-0
lines changed

CMakeLists.txt

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
cmake_minimum_required(VERSION 3.0)
2+
3+
project(cmake_test)
4+
5+
# Prepare "Catch" library for other executables
6+
set(CATCH_INCLUDE_DIR Catch2)
7+
add_library(Catch INTERFACE)
8+
target_include_directories(Catch INTERFACE ${CATCH_INCLUDE_DIR})
9+
10+
# Make test executable
11+
set(TEST_SOURCES
12+
Tests/tests.cpp
13+
Tests/Example_test.cpp
14+
)
15+
add_executable(tests ${TEST_SOURCES})
16+
target_link_libraries(tests Catch)

0 commit comments

Comments
 (0)