aoc2024: Implement day10 solution

This commit is contained in:
2024-12-10 17:26:39 +02:00
parent 581caff638
commit 3e36834751
3 changed files with 181 additions and 0 deletions

View File

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