banan-os/userspace/tee/CMakeLists.txt

18 lines
317 B
CMake
Raw Normal View History

2023-07-10 16:07:53 +03:00
cmake_minimum_required(VERSION 3.26)
project(tee CXX)
set(SOURCES
main.cpp
)
add_executable(tee ${SOURCES})
target_compile_options(tee PUBLIC -O2 -g)
target_link_libraries(tee PUBLIC libc)
add_custom_target(tee-install
COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/tee ${BANAN_BIN}/
2023-07-10 16:07:53 +03:00
DEPENDS tee
USES_TERMINAL
2023-07-10 16:07:53 +03:00
)