2023-05-11 16:19:53 +03:00
|
|
|
cmake_minimum_required(VERSION 3.26)
|
|
|
|
|
|
|
|
project(yes CXX)
|
|
|
|
|
|
|
|
set(SOURCES
|
|
|
|
main.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
add_executable(yes ${SOURCES})
|
|
|
|
target_compile_options(yes PUBLIC -O2 -g)
|
2023-05-31 22:40:15 +03:00
|
|
|
target_link_libraries(yes PUBLIC libc)
|
2023-05-11 16:19:53 +03:00
|
|
|
|
|
|
|
add_custom_target(yes-install
|
2023-08-23 10:35:16 +03:00
|
|
|
COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/yes ${BANAN_BIN}/
|
2023-05-11 16:19:53 +03:00
|
|
|
DEPENDS yes
|
2023-08-23 10:35:16 +03:00
|
|
|
USES_TERMINAL
|
2023-05-11 16:19:53 +03:00
|
|
|
)
|