19 lines
337 B
CMake
19 lines
337 B
CMake
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
|
|
Lower.cpp
|
|
Upper.cpp
|
|
Replace_Char.cpp
|
|
Replace_String.cpp
|
|
)
|
|
|
|
target_link_libraries(Test StringTools)
|