aoc2024: Implement day15 solution

This commit is contained in:
2024-12-15 20:45:57 +02:00
parent a89fd95864
commit a7e06715ba
3 changed files with 336 additions and 0 deletions

View File

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