Files
banan-os/userspace/aoc2023/day11/CMakeLists.txt
Bananymous 9e1b5cbaab BuildSystem: Cleanup CMake code to allow libc only installation
There was no way to just install libc which is required for stdlibc++
2024-06-21 01:45:14 +03:00

10 lines
187 B
CMake

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