aoc2024: Implement day4 solution

This commit is contained in:
2024-12-05 08:16:12 +02:00
parent 56cc5da9fb
commit d7b02db832
3 changed files with 142 additions and 0 deletions

View File

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