forked from Bananymous/banan-os
17 lines
297 B
CMake
17 lines
297 B
CMake
cmake_minimum_required(VERSION 3.26)
|
|
|
|
project(cat CXX)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
)
|
|
|
|
add_executable(cat ${SOURCES})
|
|
target_compile_options(cat PUBLIC -O2 -g)
|
|
target_link_libraries(cat PUBLIC libc)
|
|
|
|
add_custom_target(cat-install
|
|
COMMAND cp ${CMAKE_CURRENT_BINARY_DIR}/cat ${BANAN_BIN}/
|
|
DEPENDS cat
|
|
)
|