initial commit

This commit is contained in:
Lauchmelder 2022-02-18 14:47:36 +01:00
commit a6a40b75c2
No known key found for this signature in database
GPG key ID: C2403C69D78F011D
4 changed files with 31 additions and 0 deletions

6
.gitignore vendored Normal file
View file

@ -0,0 +1,6 @@
[Oo]ut/
[Bb]uild/
.vs/
*.json

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 ("Mandelbrot")
# Include sub-projects.
add_subdirectory ("src")

9
src/CMakeLists.txt Normal file
View file

@ -0,0 +1,9 @@
# CMakeList.txt : CMake project for Mandelbrot, include source and define
# project specific logic here.
#
cmake_minimum_required (VERSION 3.8)
# Add source to this project's executable.
add_executable (Mandelbrot "main.cpp")
# TODO: Add tests and install targets if needed.

7
src/main.cpp Normal file
View file

@ -0,0 +1,7 @@
#include <iostream>
int main(int argc, char** argv)
{
std::cout << "Hello, World!" << std::endl;
return 0;
}