2023-05-16 00:27:49 +03:00
|
|
|
cmake_minimum_required(VERSION 3.26)
|
|
|
|
|
|
|
|
project(cat CXX)
|
|
|
|
|
|
|
|
set(SOURCES
|
|
|
|
main.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
add_executable(cat ${SOURCES})
|
|
|
|
target_compile_options(cat PUBLIC -O2 -g)
|
2023-05-31 22:40:15 +03:00
|
|
|
target_link_libraries(cat PUBLIC libc)
|
2023-05-16 00:27:49 +03:00
|
|
|
|
|
|
|
add_custom_target(cat-install
|
2023-11-04 17:50:43 +02:00
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/cat ${BANAN_BIN}/
|
2023-05-16 00:27:49 +03:00
|
|
|
DEPENDS cat
|
|
|
|
)
|