aoc2024: implement day1 solution

This commit is contained in:
2024-12-01 07:38:21 +02:00
parent 11cac7a646
commit d6b170e274
3 changed files with 111 additions and 0 deletions

View File

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