Initial commit
This commit is contained in:
16
Test/CMakeLists.txt
Normal file
16
Test/CMakeLists.txt
Normal file
@@ -0,0 +1,16 @@
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
project(Test)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
|
||||
include_directories(../Src)
|
||||
link_directories(../Src/cmake-build-debug)
|
||||
|
||||
add_executable(Test
|
||||
Catch2.h
|
||||
main.cpp
|
||||
|
||||
)
|
||||
|
||||
target_link_libraries(Test {PROJECT_NAME})
|
||||
|
17965
Test/Catch2.h
Normal file
17965
Test/Catch2.h
Normal file
File diff suppressed because it is too large
Load Diff
2
Test/main.cpp
Normal file
2
Test/main.cpp
Normal file
@@ -0,0 +1,2 @@
|
||||
#define CATCH_CONFIG_MAIN
|
||||
#include "Catch2.h"
|
Reference in New Issue
Block a user