diff options
author | fuzzard <fuzzard@users.noreply.github.com> | 2022-05-06 06:39:02 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-06 06:39:02 +1000 |
commit | c1f6f125f275d79c4b76352b58b3c6d7d2864eb7 (patch) | |
tree | 58b36504b273998fbb07bfe639988940043c6c57 /cmake | |
parent | 0dec56a09384f863404fcd905306faaa42fc4dd6 (diff) | |
parent | 380fe6ac5e8af371ba472abefdb7837e0d94d53f (diff) |
Merge pull request #21331 from taoyouh/cmake-path
[Android][CMake] Correctly escape custom target commands
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/scripts/android/Install.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmake/scripts/android/Install.cmake b/cmake/scripts/android/Install.cmake index 6a981ba1db..5ff48f64d9 100644 --- a/cmake/scripts/android/Install.cmake +++ b/cmake/scripts/android/Install.cmake @@ -164,6 +164,7 @@ foreach(target apk obb apk-obb apk-clean) STRIP=${CMAKE_STRIP} ${target} WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/tools/android/packaging + VERBATIM ) if(NOT target STREQUAL apk-clean) add_dependencies(${target} bundle) |