From 7a9c61a58894d894ca165673e2582add635d1dcb Mon Sep 17 00:00:00 2001 From: Karl-Wilfried Zimmer Date: Sun, 31 Dec 2023 14:25:18 +0100 Subject: [PATCH] basic CMake stuff --- CMakeLists.txt | 5 +++++ main.cpp | 0 2 files changed, 5 insertions(+) create mode 100644 CMakeLists.txt create mode 100644 main.cpp diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..f217096 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,5 @@ +cmake_minimum_required(VERSION 3.10) + +project(Geometry) + +add_executable(Geometry main.cpp) diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..e69de29