2022-02-11 01:32:43 +01:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
2022-02-12 17:45:44 +01:00
|
|
|
project(Test)
|
2022-02-11 01:32:43 +01:00
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
|
2022-02-12 16:04:48 +01:00
|
|
|
include_directories(../Src)
|
|
|
|
link_directories(../Src/cmake-build-debug)
|
2022-02-11 01:32:43 +01:00
|
|
|
|
2022-02-12 17:45:44 +01:00
|
|
|
add_executable(Test
|
2022-02-11 01:32:43 +01:00
|
|
|
Catch2.h
|
|
|
|
main.cpp
|
2022-02-12 20:07:48 +01:00
|
|
|
|
|
|
|
# StringTools-Tests
|
|
|
|
String__Lower.cpp
|
|
|
|
String__Upper.cpp
|
|
|
|
String__Replace_Char.cpp
|
|
|
|
String__Replace_String.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
|
2022-02-11 01:32:43 +01:00
|
|
|
)
|
|
|
|
|
2022-02-12 17:45:44 +01:00
|
|
|
target_link_libraries(Test StringTools)
|