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

10 lines
183 B
CMake
Raw Normal View History

2024-12-01 07:38:21 +02:00
set(SOURCES
main.cpp
)
add_executable(aoc2024_day1 ${SOURCES})
banan_include_headers(aoc2024_day1 ban)
banan_link_library(aoc2024_day1 libc)
install(TARGETS aoc2024_day1 OPTIONAL)