aoc2024: Implement day6 solution

This commit is contained in:
2024-12-07 01:08:08 +02:00
parent e8bc3c2d80
commit fbc0319cb6
3 changed files with 254 additions and 0 deletions

View File

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