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-11-04 17:50:43 +02:00
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/Shell ${BANAN_BIN}/
|
2023-05-16 19:22:46 +03:00
|
|
|
DEPENDS Shell
|
|
|
|
)
|