From a6a40b75c23bb01c02f589767435d13932197c72 Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Fri, 18 Feb 2022 14:47:36 +0100 Subject: [PATCH] initial commit --- .gitignore | 6 ++++++ CMakeLists.txt | 9 +++++++++ src/CMakeLists.txt | 9 +++++++++ src/main.cpp | 7 +++++++ 4 files changed, 31 insertions(+) create mode 100644 .gitignore create mode 100644 CMakeLists.txt create mode 100644 src/CMakeLists.txt create mode 100644 src/main.cpp diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f389bb1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +[Oo]ut/ +[Bb]uild/ + +.vs/ + +*.json \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..995473e --- /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 ("Mandelbrot") + +# Include sub-projects. +add_subdirectory ("src") diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..c2fb4a8 --- /dev/null +++ b/src/CMakeLists.txt @@ -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. diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..9ac7454 --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,7 @@ +#include + +int main(int argc, char** argv) +{ + std::cout << "Hello, World!" << std::endl; + return 0; +}