Skip to content
Snippets Groups Projects
Commit 11c3a8dc authored by Ruslan Baratov's avatar Ruslan Baratov Committed by Gregor Jasny
Browse files

CMakeIOSInstallCombined: add some sanity checks

parent aff1e77f
No related branches found
No related tags found
No related merge requests found
......@@ -254,6 +254,13 @@ function(ios_install_combined target destination)
)
endif()
set(_lipo_path ${output})
list(LENGTH _lipo_path len)
if(NOT len EQUAL 1)
message(FATAL_ERROR "Unexpected xcrun output: ${_lipo_path}")
endif()
if(NOT EXISTS "${_lipo_path}")
message(FATAL_ERROR "File not found: ${_lipo_path}")
endif()
set(CURRENT_CONFIG "${CMAKE_INSTALL_CONFIG_NAME}")
set(CURRENT_TARGET "${target}")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment