From fdd4e79734f60cd9879a01e76d86ea06b92cb913 Mon Sep 17 00:00:00 2001 From: Robert Date: Sun, 16 Aug 2020 20:08:28 +0200 Subject: [PATCH] Initial commit --- .gitignore | 2 ++ CMakeLists.txt | 9 +++++++++ ComplexPlotting/CMakeLists.txt | 8 ++++++++ ComplexPlotting/main.cpp | 7 +++++++ README.md | 1 + 5 files changed, 27 insertions(+) create mode 100644 .gitignore create mode 100644 CMakeLists.txt create mode 100644 ComplexPlotting/CMakeLists.txt create mode 100644 ComplexPlotting/main.cpp create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..54c12dc --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.vs +out diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..5f275d8 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,9 @@ +# CMakeList.txt : Top-level CMake project file, do global configuration +# and include sub-projects here. +# +cmake_minimum_required (VERSION 3.8) + +project ("ComplexPlotting") + +# Include sub-projects. +add_subdirectory ("ComplexPlotting") diff --git a/ComplexPlotting/CMakeLists.txt b/ComplexPlotting/CMakeLists.txt new file mode 100644 index 0000000..8b5fded --- /dev/null +++ b/ComplexPlotting/CMakeLists.txt @@ -0,0 +1,8 @@ +# CMakeList.txt : CMake project for ComplexPlotting, include source and define +# project specific logic here. +# +cmake_minimum_required (VERSION 3.8) + +# Add source to this project's executable. +add_executable (ComplexPlotting "main.cpp") + diff --git a/ComplexPlotting/main.cpp b/ComplexPlotting/main.cpp new file mode 100644 index 0000000..63498a2 --- /dev/null +++ b/ComplexPlotting/main.cpp @@ -0,0 +1,7 @@ + + +int main(int argc, char** argv) +{ + + return 0; +} \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..4f5c691 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# Complex Plotting Tool \ No newline at end of file