Files
banan-os/userspace/aoc2024/day11/CMakeLists.txt
Bananymous 1c704680a8 aoc2024: Implement day11 solution
Finally we got a problem where trivial solution does not work
2024-12-11 09:05:52 +02:00

10 lines
187 B
CMake

set(SOURCES
main.cpp
)
add_executable(aoc2024_day11 ${SOURCES})
banan_include_headers(aoc2024_day11 ban)
banan_link_library(aoc2024_day11 libc)
install(TARGETS aoc2024_day11 OPTIONAL)