summaryrefslogtreecommitdiffstats
path: root/StringTools/Exec/CMakeLists.txt
diff options
context:
space:
mode:
authorLeonetienne <leonetienne@hotmail.de>2022-02-11 00:33:03 +0100
committerLeonetienne <leonetienne@hotmail.de>2022-02-11 00:33:03 +0100
commit6082c8a3a306d647ca1ea4db8b4ac45c41ac5806 (patch)
tree7f172796e278b319506d4a846caaf489af2d37b0 /StringTools/Exec/CMakeLists.txt
parentb0a42a2b1a2a85defc5bda0498e90ce7e30e6ca6 (diff)
Made Exec compile with cmake/clang
Diffstat (limited to 'StringTools/Exec/CMakeLists.txt')
-rw-r--r--StringTools/Exec/CMakeLists.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/StringTools/Exec/CMakeLists.txt b/StringTools/Exec/CMakeLists.txt
new file mode 100644
index 0000000..d5ba9c1
--- /dev/null
+++ b/StringTools/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)