BuildSystem: use -a with rsync

This allows cmake to not rebuild whole project every time
This commit is contained in:
Bananymous
2023-08-28 11:38:17 +03:00
parent 7aaea786c2
commit 8032824054
4 changed files with 4 additions and 4 deletions

View File

@@ -10,7 +10,7 @@ set(BAN_SOURCES
)
add_custom_target(ban-headers
COMMAND sudo rsync -r ${CMAKE_CURRENT_SOURCE_DIR}/include/ ${BANAN_INCLUDE}/
COMMAND sudo rsync -a ${CMAKE_CURRENT_SOURCE_DIR}/include/ ${BANAN_INCLUDE}/
DEPENDS sysroot
USES_TERMINAL
)