aoc2025: Implement day11 solution

This commit is contained in:
2025-12-15 17:57:45 +02:00
parent f9643b3881
commit 01042a24f0
3 changed files with 161 additions and 0 deletions

View File

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