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

10 lines
187 B
CMake
Raw Normal View History

2024-12-23 01:47:27 +02:00
set(SOURCES
main.cpp
)
add_executable(aoc2024_day22 ${SOURCES})
banan_include_headers(aoc2024_day22 ban)
banan_link_library(aoc2024_day22 libc)
install(TARGETS aoc2024_day22 OPTIONAL)