From 1148037c82b6ac2db366da19cfab801dfb4e88f8 Mon Sep 17 00:00:00 2001 From: Leonetienne Date: Sat, 12 Feb 2022 17:45:44 +0100 Subject: Optimized cmake structure --- Test/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Test/CMakeLists.txt') diff --git a/Test/CMakeLists.txt b/Test/CMakeLists.txt index da8c416..31793bb 100644 --- a/Test/CMakeLists.txt +++ b/Test/CMakeLists.txt @@ -1,12 +1,12 @@ cmake_minimum_required(VERSION 3.16) -project(Tests) +project(Test) set(CMAKE_CXX_STANDARD 17) include_directories(../Src) link_directories(../Src/cmake-build-debug) -add_executable(Tests +add_executable(Test Catch2.h main.cpp Lower.cpp @@ -15,4 +15,4 @@ add_executable(Tests Replace_String.cpp ) -target_link_libraries(Tests StringTools) +target_link_libraries(Test StringTools) -- cgit v1.2.3