Initial commit

This commit is contained in:
Robert 2020-08-16 20:08:28 +02:00
parent 1820aec5fb
commit fdd4e79734
5 changed files with 27 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
.vs
out

9
CMakeLists.txt Normal file
View file

@ -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")

View file

@ -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")

7
ComplexPlotting/main.cpp Normal file
View file

@ -0,0 +1,7 @@
int main(int argc, char** argv)
{
return 0;
}

1
README.md Normal file
View file

@ -0,0 +1 @@
# Complex Plotting Tool