forked from Bananymous/banan-os
18 lines
314 B
CMake
18 lines
314 B
CMake
cmake_minimum_required(VERSION 3.26)
|
|
|
|
project(id CXX)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
)
|
|
|
|
add_executable(id ${SOURCES})
|
|
target_compile_options(id PUBLIC -O2 -g)
|
|
target_link_libraries(id PUBLIC libc ban)
|
|
|
|
add_custom_target(id-install
|
|
COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/id ${BANAN_BIN}/
|
|
DEPENDS id
|
|
USES_TERMINAL
|
|
)
|