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

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.