aoc2024: Implement day3 solution

This commit is contained in:
2024-12-03 16:27:07 +02:00
parent 86859267f0
commit 3a5a22511a
3 changed files with 162 additions and 0 deletions

View File

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