aoc2025: Implement day10 solution

This commit is contained in:
2025-12-15 14:37:59 +02:00
parent d2d18bea5d
commit f9643b3881
3 changed files with 226 additions and 0 deletions

View File

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