banan-os/userspace/aoc2023/day11/CMakeLists.txt

10 lines
187 B
CMake
Raw Normal View History

2023-12-11 14:34:31 +02:00
set(SOURCES
main.cpp
)
add_executable(aoc2023_day11 ${SOURCES})
banan_include_headers(aoc2023_day11 ban)
banan_link_library(aoc2023_day11 libc)
2023-12-11 14:34:31 +02:00
install(TARGETS aoc2023_day11 OPTIONAL)