summaryrefslogtreecommitdiffstats
path: root/Test/CMakeLists.txt
diff options
context:
space:
mode:
authorLeonetienne <leon@etiennes.de>2022-05-16 23:57:26 +0200
committerLeonetienne <leon@etiennes.de>2022-05-16 23:57:26 +0200
commit954629f6bc3b7753c5be0c08e0cdb5caf1056d23 (patch)
tree33a95f60202135f9fcc689e081a64f2d274d7d99 /Test/CMakeLists.txt
parent1fe3eeb14470470d8c95c40c98a12c15320bcd57 (diff)
Adhere to new project structure
Diffstat (limited to 'Test/CMakeLists.txt')
-rw-r--r--Test/CMakeLists.txt32
1 files changed, 0 insertions, 32 deletions
diff --git a/Test/CMakeLists.txt b/Test/CMakeLists.txt
deleted file mode 100644
index dca5870..0000000
--- a/Test/CMakeLists.txt
+++ /dev/null
@@ -1,32 +0,0 @@
-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
-
- # StringTools-Tests
- String__Lower.cpp
- String__Upper.cpp
- String__Replace_Char.cpp
- String__Replace_String.cpp
- String__Split.cpp
- String__PadLeft.cpp
-
- # CharTools-Tests
- Char__IsVowel.cpp
- Char__IsLetter.cpp
- Char__IsDigit.cpp
- Char__IsUpper.cpp
- Char__IsLower.cpp
- Char__MakeUpper.cpp
- Char__MakeLower.cpp
- Char__CopySign.cpp
-)
-
-target_link_libraries(Test StringTools)