This was a nice AOC season. First time I fully completed it! I may still optimize my solutions as some of them are a bit slow...
10 lines
187 B
CMake
10 lines
187 B
CMake
set(SOURCES
|
|
main.cpp
|
|
)
|
|
|
|
add_executable(aoc2024_day25 ${SOURCES})
|
|
banan_include_headers(aoc2024_day25 ban)
|
|
banan_link_library(aoc2024_day25 libc)
|
|
|
|
install(TARGETS aoc2024_day25 OPTIONAL)
|