Files
banan-os/userspace/aoc2024/day24/CMakeLists.txt
Bananymous 3607e2e759 aoc2024: Implement day24 solution
This is kinda weird and specific to my input but it works xD
2024-12-25 18:13:20 +02:00

10 lines
184 B
CMake

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