aoc2024: Implement day12 solution

This commit is contained in:
2024-12-12 17:03:31 +02:00
parent 1c704680a8
commit 8936cca9cf
3 changed files with 272 additions and 0 deletions

View File

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