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
|
2023-11-04 17:50:43 +02:00
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/tee ${BANAN_BIN}/
|
2023-07-10 16:07:53 +03:00
|
|
|
DEPENDS tee
|
|
|
|
)
|