Lines Matching full:install

15 # - The ${PROJECT}_INSTALL_PACKAGE_DIR variable contains the install destination
110 # Get the EXPORT argument to use for an install command for a target in a
176 # Create the install commands and targets for the distributions' CMake exports.
177 # The target to install ${distribution} for a project is called
199 install(EXPORT ${project}${suffix} DESTINATION "${destination}"
209 install(EXPORT ${project}${distribution}${suffix} DESTINATION "${destination}"
215 add_llvm_install_targets(install-${target} COMPONENT ${target})
223 # ${distribution} target builds the distribution, install-${distribution}
224 # installs it, and install-${distribution}-stripped installs a stripped version,
263 add_custom_target(install-${distribution_target})
264 add_custom_target(install-${distribution_target}-stripped)
268 install-${distribution_target}
269 install-${distribution_target}-stripped
275 …# Note that some distribution components may not have an actual target, but only an install-FOO ta…
281 if(TARGET install-${target})
282 add_dependencies(install-${distribution_target} install-${target})
283 elseif(TARGET install-llvm-driver AND ${target} IN_LIST LLVM_DRIVER_TOOL_SYMLINKS)
284 add_dependencies(install-${distribution_target} install-llvm-driver)
286 … message(SEND_ERROR "Specified distribution component '${target}' doesn't have an install target")
289 if(TARGET install-${target}-stripped)
290 add_dependencies(install-${distribution_target}-stripped install-${target}-stripped)
291 elseif(TARGET install-llvm-driver-stripped AND ${target} IN_LIST LLVM_DRIVER_TOOL_SYMLINKS)
292 add_dependencies(install-${distribution_target}-stripped install-llvm-driver-stripped)
295 … "Specified distribution component '${target}' doesn't have an install-stripped target."
297 " or you should manually create the 'install-${target}-stripped' target.")