Scaffold day 1

This commit is contained in:
Feiko Wielsma 2025-12-01 20:29:57 +01:00
commit c093e8a4bf
5 changed files with 1058 additions and 0 deletions

1045
.gitignore vendored Normal file

File diff suppressed because it is too large Load diff

6
CMakeLists.txt Normal file
View file

@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.10.0)
project(aoc25 VERSION 0.1.0 LANGUAGES C CXX)
# Per-day subprojects (example: day1)
add_subdirectory(day1)

2
day1/CMakeLists.txt Normal file
View file

@ -0,0 +1,2 @@
add_executable(day1 main.cpp)
set_target_properties(day1 PROPERTIES CXX_STANDARD 17 CXX_STANDARD_REQUIRED ON)

0
day1/day1_input Normal file
View file

5
day1/main.cpp Normal file
View file

@ -0,0 +1,5 @@
#include <iostream>
int main(int, char**){
std::cout << "Hello, from aoc25 day1!\n";
}