Lines Matching refs: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}"
213 add_llvm_install_targets(install-${target} COMPONENT ${target})
221 # ${distribution} target builds the distribution, install-${distribution}
222 # installs it, and install-${distribution}-stripped installs a stripped version,
259 add_custom_target(install-${distribution_target})
260 add_custom_target(install-${distribution_target}-stripped)
263 …# Note that some distribution components may not have an actual target, but only an install-FOO ta…
269 if(TARGET install-${target})
270 add_dependencies(install-${distribution_target} install-${target})
272 … message(SEND_ERROR "Specified distribution component '${target}' doesn't have an install target")
275 if(TARGET install-${target}-stripped)
276 add_dependencies(install-${distribution_target}-stripped install-${target}-stripped)
279 … "Specified distribution component '${target}' doesn't have an install-stripped target."
281 " or you should manually create the 'install-${target}-stripped' target.")