aoc2024: Implement day13 solution

This commit is contained in:
2024-12-14 03:17:55 +02:00
parent 8936cca9cf
commit 4dbf173ed4
3 changed files with 125 additions and 0 deletions

View File

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