Files
swift-mirror/cmake/modules/SwiftToolchainUtils.cmake
Saleem Abdulrasool 70a32af57b build: make the lipo detection uniform
Change the standalone SDK overlay build and unified build lipo detection
identical.
2018-10-18 12:12:06 -07:00

8 lines
292 B
CMake

function(find_toolchain_tool result_var_name toolchain tool)
execute_process(
COMMAND "xcrun" "--toolchain" "${toolchain}" "--find" "${tool}"
OUTPUT_VARIABLE tool_path
OUTPUT_STRIP_TRAILING_WHITESPACE)
set("${result_var_name}" "${tool_path}" PARENT_SCOPE)
endfunction()