summaryrefslogtreecommitdiffstats
path: root/StringTools/Exec
diff options
context:
space:
mode:
authorLeonetienne <leonetienne@hotmail.de>2022-02-12 03:07:11 +0100
committerLeonetienne <leonetienne@hotmail.de>2022-02-12 03:07:11 +0100
commita6c9e64eb559a58d31f5ea68b8947f460ed8f04b (patch)
tree0e5789541a3d26e4c0c1bed8a0585be27fc182ec /StringTools/Exec
parentf4e36ec9af5002eaa51c742faa10e4cbc7d66de0 (diff)
Better directory structure naming
Diffstat (limited to 'StringTools/Exec')
-rw-r--r--StringTools/Exec/CMakeLists.txt10
-rw-r--r--StringTools/Exec/main.cpp9
2 files changed, 0 insertions, 19 deletions
diff --git a/StringTools/Exec/CMakeLists.txt b/StringTools/Exec/CMakeLists.txt
deleted file mode 100644
index d5ba9c1..0000000
--- a/StringTools/Exec/CMakeLists.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-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)
diff --git a/StringTools/Exec/main.cpp b/StringTools/Exec/main.cpp
deleted file mode 100644
index 4beeed7..0000000
--- a/StringTools/Exec/main.cpp
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <iostream>
-#include <StringTools/StringTools.h>
-
-int main()
-{
- std::cout << StringTools::Replace("Hello, ${where}!\n", "${where}", "World") << std::endl;
-
- return 0;
-}