Imported Upstream version 3.21.4
[platform/upstream/cmake.git] / Tests / RunCMake / XcodeProject / XcodeIOSInstallCombined-install-check.cmake
1 function(verify_architectures file)
2   execute_process(
3     COMMAND xcrun otool -vf ${RunCMake_TEST_BINARY_DIR}/_install/${file}
4     OUTPUT_VARIABLE otool_out
5     ERROR_VARIABLE otool_err
6     RESULT_VARIABLE otool_result)
7   if(NOT otool_result EQUAL "0")
8     message(SEND_ERROR "Could not retrieve fat headers: ${otool_err}")
9     return()
10   endif()
11
12   string(REGEX MATCHALL "\narchitecture [^ \n\t()]+" architectures ${otool_out})
13   string(REPLACE "\narchitecture " "" actual "${architectures}")
14   list(SORT actual)
15
16   set(expected arm64 armv7 i386 x86_64)
17
18   if(NOT actual STREQUAL expected)
19     message(SEND_ERROR
20       "The actual library contains the architectures:\n ${actual} \n"
21       "which do not match expected ones:\n ${expected} \n"
22       "otool output:\n${otool_out}")
23   endif()
24 endfunction()
25
26 verify_architectures(bin/foo_app.app/foo_app)
27 verify_architectures(lib/libfoo_static.a)
28 verify_architectures(lib/libfoo_shared.dylib)
29 verify_architectures(lib/foo_bundle.bundle/foo_bundle)
30 verify_architectures(lib/foo_framework.framework/foo_framework)