aoc2024: Implement day7 solution

This commit is contained in:
2024-12-07 07:34:21 +02:00
parent 2d0690ae2d
commit cf9ba737f0
3 changed files with 116 additions and 0 deletions

View File

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