File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -84,6 +84,14 @@ function(remove_sdk_unsupported_archs name os sdk_path architectures_var)
84
84
# 32-bit iOS simulator is not listed explicitly in SDK settings.
85
85
message (STATUS "Assuming ${name} SDK at ${sdk_path} supports architecture ${arch} " )
86
86
list (APPEND architectures ${arch} )
87
+ elseif (arch STREQUAL "armv7k" AND os STREQUAL "watchos" )
88
+ # 32-bit watchOS is not listed explicitly in SDK settings.
89
+ message (STATUS "Assuming ${name} SDK at ${sdk_path} supports architecture ${arch} " )
90
+ list (APPEND architectures ${arch} )
91
+ elseif (arch STREQUAL "i386" AND os STREQUAL "watchsimulator" )
92
+ # 32-bit watchOS simulator is not listed explicitly in SDK settings.
93
+ message (STATUS "Assuming ${name} SDK at ${sdk_path} supports architecture ${arch} " )
94
+ list (APPEND architectures ${arch} )
87
95
else ()
88
96
message (STATUS "${name} SDK at ${sdk_path} does not support architecture ${arch} " )
89
97
endif ()
You can’t perform that action at this time.
0 commit comments