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

10 lines
180 B
CMake
Raw Normal View History

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