aoc2025: Implement day8 solution

This commit is contained in:
2025-12-12 22:37:03 +02:00
parent 08031b1227
commit 87e595b83e
3 changed files with 189 additions and 0 deletions

View File

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