diff options
| author | Leonetienne <leonetienne@hotmail.de> | 2022-03-13 15:52:53 +0100 |
|---|---|---|
| committer | Leonetienne <leonetienne@hotmail.de> | 2022-03-13 15:52:53 +0100 |
| commit | 25bd26972945f956ad4c92ce8a61bb6126c0dedb (patch) | |
| tree | 9548e39ced9cd541586a8dd5c12638a0edb6a1ca /Exec/CMakeLists.txt | |
| parent | 5f791b8d9f66b53e1019abfe6a13b6e86fe5ca51 (diff) | |
Implementation Split
Diffstat (limited to 'Exec/CMakeLists.txt')
| -rw-r--r-- | Exec/CMakeLists.txt | 10 |
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
+)
|
