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

10 lines
183 B
CMake
Raw Permalink Normal View History

2024-12-03 16:27:07 +02:00
set(SOURCES
main.cpp
)
add_executable(aoc2024_day3 ${SOURCES})
banan_include_headers(aoc2024_day3 ban)
banan_link_library(aoc2024_day3 libc)
install(TARGETS aoc2024_day3 OPTIONAL)