Project setup

This commit is contained in:
2025-11-30 00:34:06 -05:00
commit b81b1e56c5
10 changed files with 600 additions and 0 deletions

7
CMakeLists.txt Normal file
View File

@@ -0,0 +1,7 @@
cmake_minimum_required(VERSION 4.0)
project(AdventOfCode2025)
set(CMAKE_CXX_STANDARD 20)
#### Exe to make sure cmake is working
add_executable(testcmake src/testcmake/main.cpp)