diff options
author | Brad King <brad.king@kitware.com> | 2009-02-10 13:51:15 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-02-10 13:51:15 (GMT) |
commit | b604b98c5690c49109ad464190c1b8a7562410b0 (patch) | |
tree | d477ac9d52d7328848deb4e460628deb775a29fd /Source/cmMakefileExecutableTargetGenerator.cxx | |
parent | c895d9f2e0dac609a8e3e126cc05a0400e9740a9 (diff) | |
download | CMake-b604b98c5690c49109ad464190c1b8a7562410b0.zip CMake-b604b98c5690c49109ad464190c1b8a7562410b0.tar.gz CMake-b604b98c5690c49109ad464190c1b8a7562410b0.tar.bz2 |
ENH: Define RULE_LAUNCH_* properties
This defines global, directory, and target properties
RULE_LAUNCH_COMPILE, RULE_LAUNCH_LINK, and RULE_LAUNCH_CUSTOM. Their
values specify 'launcher' command lines which are prefixed to compile,
link, and custom build rules by Makefile generators.
Diffstat (limited to 'Source/cmMakefileExecutableTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileExecutableTargetGenerator.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmMakefileExecutableTargetGenerator.cxx b/Source/cmMakefileExecutableTargetGenerator.cxx index 6a75902..a96d297 100644 --- a/Source/cmMakefileExecutableTargetGenerator.cxx +++ b/Source/cmMakefileExecutableTargetGenerator.cxx @@ -360,6 +360,8 @@ void cmMakefileExecutableTargetGenerator::WriteExecutableRule(bool relink) buildObjs, depends); cmLocalGenerator::RuleVariables vars; + vars.RuleLauncher = "RULE_LAUNCH_LINK"; + vars.CMTarget = this->Target; vars.Language = linkLanguage; vars.Objects = buildObjs.c_str(); vars.Target = targetOutPathReal.c_str(); |