diff options
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 870fd6f..3a8ab2a 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -3564,6 +3564,25 @@ void cmMakefile::DefineProperties(cmake *cm) "This read-only property specifies the list of directories given " "so far to the link_directories command. " "It is intended for debugging purposes.", false); + + cm->DefineProperty + ("RULE_LAUNCH_COMPILE", cmProperty::DIRECTORY, + "Specify a launcher for compile rules.", + "See the global property of the same name for details. " + "This overrides the global property for a directory.", + true); + cm->DefineProperty + ("RULE_LAUNCH_LINK", cmProperty::DIRECTORY, + "Specify a launcher for link rules.", + "See the global property of the same name for details. " + "This overrides the global property for a directory.", + true); + cm->DefineProperty + ("RULE_LAUNCH_CUSTOM", cmProperty::DIRECTORY, + "Specify a launcher for custom rules.", + "See the global property of the same name for details. " + "This overrides the global property for a directory.", + true); } //---------------------------------------------------------------------------- |