2023-06-11 03:29:41 +03:00
|
|
|
cmake_minimum_required(VERSION 3.26)
|
|
|
|
|
|
|
|
project(ls CXX)
|
|
|
|
|
|
|
|
set(SOURCES
|
|
|
|
main.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
add_executable(ls ${SOURCES})
|
|
|
|
target_compile_options(ls PUBLIC -O2 -g)
|
|
|
|
target_link_libraries(ls PUBLIC libc)
|
|
|
|
|
|
|
|
add_custom_target(ls-install
|
2023-08-23 10:35:16 +03:00
|
|
|
COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/ls ${BANAN_BIN}/
|
2023-06-11 03:29:41 +03:00
|
|
|
DEPENDS ls
|
2023-08-23 10:35:16 +03:00
|
|
|
USES_TERMINAL
|
2023-06-11 03:29:41 +03:00
|
|
|
)
|