From 72fafe4553e075c040734e31164e50c4cdc7f319 Mon Sep 17 00:00:00 2001 From: wuesk Date: Tue, 22 Sep 2026 13:30:39 +0200 Subject: initial commit --- CMakeLists.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..eda9a09 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,14 @@ +cmake_minimum_required(VERSION 3.20) + +project(blogman) + +set(CMAKE_CXX_STANDARD 20) +set(CMAKE_EXPORT_COMPILE_COMMANDS ON) + +add_executable(blogman + src/main.cpp + src/views.cpp + src/guestbook.cpp +) + +target_include_directories(blogman PRIVATE include) \ No newline at end of file -- cgit v1.2.3