diff --git a/Meta/CMake/vcpkg/base-triplets/arm64-linux.cmake b/Meta/CMake/vcpkg/base-triplets/arm64-linux.cmake new file mode 100644 index 00000000000..8c993d71e58 --- /dev/null +++ b/Meta/CMake/vcpkg/base-triplets/arm64-linux.cmake @@ -0,0 +1,5 @@ +set(VCPKG_CMAKE_SYSTEM_NAME Linux) +set(VCPKG_TARGET_ARCHITECTURE arm64) +set(VCPKG_CRT_LINKAGE dynamic) + +include(${CMAKE_CURRENT_LIST_DIR}/../user-variables.cmake OPTIONAL) diff --git a/Meta/CMake/vcpkg/debug-triplets/arm64-linux.cmake b/Meta/CMake/vcpkg/debug-triplets/arm64-linux.cmake new file mode 100644 index 00000000000..ba5ff484fee --- /dev/null +++ b/Meta/CMake/vcpkg/debug-triplets/arm64-linux.cmake @@ -0,0 +1,2 @@ +include (${CMAKE_CURRENT_LIST_DIR}/../base-triplets/arm64-linux.cmake) +include (${CMAKE_CURRENT_LIST_DIR}/debug.cmake) diff --git a/Meta/CMake/vcpkg/release-triplets/arm64-linux.cmake b/Meta/CMake/vcpkg/release-triplets/arm64-linux.cmake new file mode 100644 index 00000000000..df622522827 --- /dev/null +++ b/Meta/CMake/vcpkg/release-triplets/arm64-linux.cmake @@ -0,0 +1,2 @@ +include (${CMAKE_CURRENT_LIST_DIR}/../base-triplets/arm64-linux.cmake) +include (${CMAKE_CURRENT_LIST_DIR}/release.cmake) diff --git a/Meta/CMake/vcpkg/sanitizer-triplets/arm64-linux.cmake b/Meta/CMake/vcpkg/sanitizer-triplets/arm64-linux.cmake new file mode 100644 index 00000000000..5ec2a5fd61a --- /dev/null +++ b/Meta/CMake/vcpkg/sanitizer-triplets/arm64-linux.cmake @@ -0,0 +1,2 @@ +include (${CMAKE_CURRENT_LIST_DIR}/../base-triplets/arm64-linux.cmake) +include (${CMAKE_CURRENT_LIST_DIR}/sanitizer.cmake)