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