Initial commit
This commit is contained in:
parent
1820aec5fb
commit
fdd4e79734
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
.vs
|
||||
out
|
9
CMakeLists.txt
Normal file
9
CMakeLists.txt
Normal 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")
|
8
ComplexPlotting/CMakeLists.txt
Normal file
8
ComplexPlotting/CMakeLists.txt
Normal 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
7
ComplexPlotting/main.cpp
Normal file
|
@ -0,0 +1,7 @@
|
|||
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Reference in a new issue