aoc2025: Implement day1 solution

This commit is contained in:
2025-12-12 02:49:10 +02:00
parent 5d9e9c021a
commit 19c4f34ccb
3 changed files with 97 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
set(SOURCES
main.cpp
)
add_executable(aoc2025_day1 ${SOURCES})
banan_include_headers(aoc2025_day1 ban)
banan_link_library(aoc2025_day1 libc)
install(TARGETS aoc2025_day1 OPTIONAL)