diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-05 16:41:53 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-08 23:04:38 (GMT) |
commit | 49017cddab23702d8228a195f64934e61ab7667e (patch) | |
tree | 65e5583824eb7547f14ba223391378a8bb512786 /Source/cmGeneratorTarget.h | |
parent | 0bae4a416f9f1b9090499d26f8508660f4f3fc95 (diff) | |
download | CMake-49017cddab23702d8228a195f64934e61ab7667e.zip CMake-49017cddab23702d8228a195f64934e61ab7667e.tar.gz CMake-49017cddab23702d8228a195f64934e61ab7667e.tar.bz2 |
cmGeneratorTarget: Move IsNullImpliedByLinkLibraries from cmTarget.
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index 77d3b99..f0f6d41 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -317,6 +317,8 @@ public: typedef std::map<std::string, CompileInfo> CompileInfoMapType; mutable CompileInfoMapType CompileInfoMap; + bool IsNullImpliedByLinkLibraries(const std::string &p) const; + /** Get the name of the compiler pdb file for the target. */ std::string GetCompilePDBName(const std::string& config="") const; @@ -486,6 +488,7 @@ private: std::vector<TargetPropertyEntry*> CompileFeaturesEntries; std::vector<TargetPropertyEntry*> CompileDefinitionsEntries; std::vector<TargetPropertyEntry*> SourceEntries; + mutable std::set<std::string> LinkImplicitNullProperties; void ExpandLinkItems(std::string const& prop, std::string const& value, std::string const& config, cmTarget const* headTarget, |