Files
Vulkan-Samples/bldsys/cmake/android_sync_folder.cmake
T
2025-09-04 10:54:47 +08:00

98 lines
2.3 KiB
CMake

#[[
Copyright (c) 2019-2024, Arm Limited and Contributors
SPDX-License-Identifier: Apache-2.0
Licensed under the Apache License, Version 2.0 the "License";
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
]]
set(CMAKE_MODULE_PATH
${CMAKE_MODULE_PATH}
${CMAKE_MODULE_PATH}/module)
set(FOLDER_DIR ${FOLDER_DIR})
set(DEVICE_DIR ${DEVICE_DIR})
find_package(Adb 1.0.39 REQUIRED)
# Sync files to temporary directory
get_filename_component(DIR_PATH "${FOLDER_DIR}" DIRECTORY)
get_filename_component(DIR_NAME "${DIR_PATH}" NAME)
set(TEMP_DIR "/data/local/tmp/${DIR_NAME}")
# Ensure that directory exists in the target
set(ADB_COMMAND ${ADB_EXECUTABLE} shell mkdir -p ${TEMP_DIR})
execute_process(
COMMAND
${ADB_COMMAND})
set(ADB_COMMAND ${ADB_EXECUTABLE} push --sync ${FOLDER_DIR} ${TEMP_DIR})
execute_process(
COMMAND
${ADB_COMMAND}
RESULT_VARIABLE
ret_var
OUTPUT_VARIABLE
ret_msg
OUTPUT_STRIP_TRAILING_WHITESPACE)
if(NOT "${ret_var}" STREQUAL "0")
message(WARNING "Could not sync ${FOLDER_DIR} to temp dir:\n${ret_msg}")
else()
message(STATUS "Updated ${FOLDER_DIR} to ${TEMP_DIR}:\n${ret_msg}")
endif()
# Copy to final device destination
get_filename_component(DIR_PATH "${DEVICE_DIR}" DIRECTORY)
# Ensure that directory exists in the target
set(ADB_COMMAND ${ADB_EXECUTABLE} shell mkdir -p ${DIR_PATH})
execute_process(
COMMAND
${ADB_COMMAND})
set(ADB_COMMAND ${ADB_EXECUTABLE} shell cp -r ${TEMP_DIR} ${DIR_PATH})
execute_process(
COMMAND
${ADB_COMMAND}
RESULT_VARIABLE
ret_var
OUTPUT_VARIABLE
ret_msg
OUTPUT_STRIP_TRAILING_WHITESPACE)
if(NOT "${ret_var}" STREQUAL "0")
message(WARNING "Could not copy ${FOLDER_DIR} to final dir:\n${ret_msg}")
else()
message(STATUS "Copied ${TEMP_DIR} to ${DIR_PATH}:\n${ret_msg}")
endif()
execute_process(
COMMAND
${ADB_COMMAND})
# Ensure file permissions
set(ADB_COMMAND ${ADB_EXECUTABLE} shell chmod 777 -R ${DIR_PATH})
execute_process(
COMMAND
${ADB_COMMAND})