mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 12:19:53 +00:00
[CMake] [Xcode] Improving Xcode toolchain generation to support distribution targets
This adds a new target `install-distribution-toolchain` which will install an Xcode toolchain featuring just the LLVM components specified in LLVM_DISTRIBUTION_COMPONENTS. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@268125 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0ac37a4267
commit
ccc43fcdeb
@ -70,3 +70,23 @@ add_custom_target(install-xcode-toolchain
|
||||
-DCMAKE_INSTALL_PREFIX=${LLVMToolchainDir}/usr/
|
||||
-P "${CMAKE_BINARY_DIR}/cmake_install.cmake"
|
||||
${cmake_3_2_USES_TERMINAL})
|
||||
|
||||
if(LLVM_DISTRIBUTION_COMPONENTS)
|
||||
if(CMAKE_CONFIGURATION_TYPES)
|
||||
message(FATAL_ERROR "LLVM_DISTRIBUTION_COMPONENTS cannot be specified with multi-configuration generators (i.e. Xcode or Visual Studio)")
|
||||
endif()
|
||||
|
||||
add_custom_target(install-distribution-toolchain
|
||||
DEPENDS ${LLVMToolchainDir}/ToolchainInfo.plist distribution)
|
||||
|
||||
foreach(target ${LLVM_DISTRIBUTION_COMPONENTS})
|
||||
add_custom_target(install-distribution-${target}
|
||||
DEPENDS ${target}
|
||||
COMMAND "${CMAKE_COMMAND}"
|
||||
-DCMAKE_INSTALL_COMPONENT=${target}
|
||||
-DCMAKE_INSTALL_PREFIX=${LLVMToolchainDir}/usr/
|
||||
-P "${CMAKE_BINARY_DIR}/cmake_install.cmake"
|
||||
${cmake_3_2_USES_TERMINAL})
|
||||
add_dependencies(install-distribution-toolchain install-distribution-${target})
|
||||
endforeach()
|
||||
endif()
|
||||
|
Loading…
Reference in New Issue
Block a user