summaryrefslogtreecommitdiffstats
path: root/Exec/CMakeLists.txt
diff options
context:
space:
mode:
authorLeonetienne <leonetienne@hotmail.de>2022-03-13 15:52:53 +0100
committerLeonetienne <leonetienne@hotmail.de>2022-03-13 15:52:53 +0100
commit25bd26972945f956ad4c92ce8a61bb6126c0dedb (patch)
tree9548e39ced9cd541586a8dd5c12638a0edb6a1ca /Exec/CMakeLists.txt
parent5f791b8d9f66b53e1019abfe6a13b6e86fe5ca51 (diff)
Implementation Split
Diffstat (limited to 'Exec/CMakeLists.txt')
-rw-r--r--Exec/CMakeLists.txt10
1 files changed, 7 insertions, 3 deletions
diff --git a/Exec/CMakeLists.txt b/Exec/CMakeLists.txt
index d42e35f..c51da8b 100644
--- a/Exec/CMakeLists.txt
+++ b/Exec/CMakeLists.txt
@@ -4,7 +4,11 @@ project(Exec)
set(CMAKE_CXX_STANDARD 17)
include_directories(../Src)
-link_directories(../Src/cmake-build-debug)
-add_executable(Exec main.cpp)
-target_link_libraries(Exec StringTools)
+FILE(GLOB StringTools ../Src/*.cpp)
+
+add_executable(Exec
+ ${StringTools}
+
+ main.cpp
+)