forked from Bananymous/banan-os
19 lines
412 B
CMake
19 lines
412 B
CMake
cmake_minimum_required(VERSION 3.26)
|
|
|
|
project(Shell CXX)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
)
|
|
|
|
add_executable(Shell ${SOURCES})
|
|
target_compile_options(Shell PUBLIC -O2 -g)
|
|
add_dependencies(Shell libc-install)
|
|
target_link_options(Shell PUBLIC -nodefaultlibs)
|
|
target_link_libraries(Shell PUBLIC ${BANAN_LIB}/libc.a)
|
|
|
|
add_custom_target(Shell-install
|
|
COMMAND cp ${CMAKE_CURRENT_BINARY_DIR}/Shell ${BANAN_BIN}/
|
|
DEPENDS Shell
|
|
)
|