diff options
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 5f962ad..a624e66 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -203,6 +203,7 @@ public: { memset(this, 0, sizeof(*this)); } + cmTarget* CMTarget; const char* TargetPDB; const char* TargetVersionMajor; const char* TargetVersionMinor; @@ -222,6 +223,7 @@ public: const char* LinkFlags; const char* LanguageCompileFlags; const char* Defines; + const char* RuleLauncher; }; /** Set whether to treat conversions to SHELL as a link script shell. */ @@ -317,6 +319,11 @@ protected: // Expand rule variables in a single string std::string ExpandRuleVariable(std::string const& variable, const RuleVariables& replaceValues); + + const char* GetRuleLauncher(cmTarget* target, const char* prop); + void InsertRuleLauncher(std::string& s, cmTarget* target, + const char* prop); + /** Convert a target to a utility target for unsupported * languages of a generator */ |