diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-07-28 16:30:15 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-07-29 14:43:31 (GMT) |
commit | 34b902a5a6fd55ef3857d74aab986a8d96d57659 (patch) | |
tree | af78f7be7aa49a9fc2a81b160ad30f379372219e /Source/cmMakefile.h | |
parent | aaa322a5cb5603742273282fb12f1e368697a625 (diff) | |
download | CMake-34b902a5a6fd55ef3857d74aab986a8d96d57659.zip CMake-34b902a5a6fd55ef3857d74aab986a8d96d57659.tar.gz CMake-34b902a5a6fd55ef3857d74aab986a8d96d57659.tar.bz2 |
cmMakefile: Move method out of line.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 4fa5822..1e5c301 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -417,10 +417,7 @@ public: { this->GeneratorTargets = targets; } - void AddGeneratorTarget(cmTarget* t, cmGeneratorTarget* gt) - { - this->GeneratorTargets[t] = gt; - } + void AddGeneratorTarget(cmTarget* t, cmGeneratorTarget* gt); cmTarget* FindTarget(const std::string& name, bool excludeAliases = false) const; |