banan-os/userspace/aoc2024/day14/CMakeLists.txt

10 lines
187 B
CMake
Raw Normal View History

2024-12-14 23:52:22 +02:00
set(SOURCES
main.cpp
)
add_executable(aoc2024_day14 ${SOURCES})
banan_include_headers(aoc2024_day14 ban)
banan_link_library(aoc2024_day14 libc)
install(TARGETS aoc2024_day14 OPTIONAL)