Files
banan-os/userspace/aoc2023/day1/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
183 B
CMake

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