2023-05-11 16:19:53 +03:00
|
|
|
cmake_minimum_required(VERSION 3.26)
|
|
|
|
|
|
|
|
project(test CXX)
|
|
|
|
|
|
|
|
set(TEST_SOURCES
|
|
|
|
test.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
add_executable(test ${TEST_SOURCES})
|
|
|
|
target_compile_options(test PUBLIC -O2 -g)
|
2023-05-31 22:40:15 +03:00
|
|
|
target_link_libraries(test PUBLIC libc)
|
2023-05-11 16:19:53 +03:00
|
|
|
|
|
|
|
add_custom_target(test-install
|
|
|
|
COMMAND cp ${CMAKE_CURRENT_BINARY_DIR}/test ${BANAN_BIN}/
|
|
|
|
DEPENDS test
|
|
|
|
)
|