2023-04-02 04:07:27 +03:00
|
|
|
cmake_minimum_required(VERSION 3.26)
|
|
|
|
|
|
|
|
project(BAN CXX)
|
|
|
|
|
2023-04-06 00:23:02 +03:00
|
|
|
add_custom_target(ban-headers
|
2023-04-10 20:27:20 +03:00
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy_directory_if_different ${CMAKE_CURRENT_SOURCE_DIR}/include ${BANAN_INCLUDE}
|
2023-04-02 04:07:27 +03:00
|
|
|
DEPENDS sysroot
|
|
|
|
)
|
2023-04-06 00:23:02 +03:00
|
|
|
|
|
|
|
add_custom_target(ban-install
|
|
|
|
DEPENDS ban-headers
|
|
|
|
)
|
|
|
|
|