summaryrefslogtreecommitdiffstats
path: root/Exec
diff options
context:
space:
mode:
Diffstat (limited to 'Exec')
-rw-r--r--Exec/CMakeLists.txt14
-rw-r--r--Exec/main.cpp13
2 files changed, 0 insertions, 27 deletions
diff --git a/Exec/CMakeLists.txt b/Exec/CMakeLists.txt
deleted file mode 100644
index c51da8b..0000000
--- a/Exec/CMakeLists.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-cmake_minimum_required(VERSION 3.16)
-project(Exec)
-
-set(CMAKE_CXX_STANDARD 17)
-
-include_directories(../Src)
-
-FILE(GLOB StringTools ../Src/*.cpp)
-
-add_executable(Exec
- ${StringTools}
-
- main.cpp
-)
diff --git a/Exec/main.cpp b/Exec/main.cpp
deleted file mode 100644
index ef95632..0000000
--- a/Exec/main.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <iostream>
-#include <StringTools.h>
-
-int main()
-{
- std::vector<std::string> foo =
- StringTools::Split(",,Hello,,lol,,test,,", ",,");
-
- for (const auto& it : foo)
- std::cout << "'" << it << "'" << std::endl;
-
- return 0;
-}