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