Updated the docker setup.

This commit is contained in:
douwe
2026-08-19 10:06:27 +02:00
parent b0acdc67c8
commit 06f271d778
71 changed files with 44 additions and 1408 deletions

11
CMakeLists.txt Normal file
View File

@@ -0,0 +1,11 @@
cmake_minimum_required(VERSION 3.10)
project(douwco_website)
# Set the C++ standard (e.g., C++17)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
# Add your executable
add_executable(server.out
server/main.cpp
)