XcodeIOSInstallCombined-install-check.cmake 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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. string(REGEX MATCHALL "architecture [^ \n\t]+" architectures ${otool_out})
  12. string(REPLACE "architecture " "" actual "${architectures}")
  13. list(SORT actual)
  14. if(XCODE_VERSION VERSION_GREATER_EQUAL 9)
  15. set(expected arm64 x86_64)
  16. else()
  17. set(expected arm64 armv7 i386 x86_64)
  18. endif()
  19. if(NOT actual STREQUAL expected)
  20. message(SEND_ERROR
  21. "The actual library contains the architectures:\n ${actual} \n"
  22. "which do not match expected ones:\n ${expected} \n"
  23. "otool output:\n${otool_out}")
  24. endif()
  25. endfunction()
  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)