diff options
| author | Deadpikle <Deadpikle@users.noreply.github.com> | 2020-08-05 16:04:35 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-05 13:04:35 -0700 |
| commit | 7b054d8d341324af343ee1b1521a4a83757cef13 (patch) | |
| tree | 251a145b060697f0bb043c9a4beb3af9bf4aab49 /scripts | |
| parent | 2ade39048c4562de89258dbde1d9fb8675e3d0cc (diff) | |
| download | vcpkg-7b054d8d341324af343ee1b1521a4a83757cef13.tar.gz vcpkg-7b054d8d341324af343ee1b1521a4a83757cef13.zip | |
[vcpkg scripts] Add VCPKG_TARGET_IS_IOS (#12715)
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/cmake/vcpkg_common_definitions.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/cmake/vcpkg_common_definitions.cmake b/scripts/cmake/vcpkg_common_definitions.cmake index 4ea0a361d..2414b5df6 100644 --- a/scripts/cmake/vcpkg_common_definitions.cmake +++ b/scripts/cmake/vcpkg_common_definitions.cmake @@ -32,6 +32,8 @@ if (NOT VCPKG_CMAKE_SYSTEM_NAME OR VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStor endif() elseif(VCPKG_CMAKE_SYSTEM_NAME STREQUAL "Darwin") set(VCPKG_TARGET_IS_OSX 1) +elseif(VCPKG_CMAKE_SYSTEM_NAME STREQUAL "iOS") + set(VCPKG_TARGET_IS_IOS 1) elseif(VCPKG_CMAKE_SYSTEM_NAME STREQUAL "Linux") set(VCPKG_TARGET_IS_LINUX 1) elseif(VCPKG_CMAKE_SYSTEM_NAME STREQUAL "Android") |
