summaryrefslogtreecommitdiffstats
path: root/Src/Exec/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'Src/Exec/CMakeLists.txt')
-rw-r--r--Src/Exec/CMakeLists.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/Src/Exec/CMakeLists.txt b/Src/Exec/CMakeLists.txt
new file mode 100644
index 0000000..d5ba9c1
--- /dev/null
+++ b/Src/Exec/CMakeLists.txt
@@ -0,0 +1,10 @@
+cmake_minimum_required(VERSION 3.16)
+project(Exec)
+
+set(CMAKE_CXX_STANDARD 17)
+
+include_directories(..)
+link_directories(../StringTools/cmake-build-debug)
+
+add_executable(Exec main.cpp)
+target_link_libraries(Exec Stringtools)