diff options
author | Stephen Kelly <steveire@gmail.com> | 2016-10-12 22:18:23 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2016-10-15 09:14:21 (GMT) |
commit | a55cac4ba475ff61da4146272246512a52247323 (patch) | |
tree | fa012fd82ac2c0c8433ea121b361bfcdb3027dfd /Source/cmTarget.h | |
parent | 705fcf522be16eee03b1757274b23ada6547e6bd (diff) | |
download | CMake-a55cac4ba475ff61da4146272246512a52247323.zip CMake-a55cac4ba475ff61da4146272246512a52247323.tar.gz CMake-a55cac4ba475ff61da4146272246512a52247323.tar.bz2 |
cmTarget: Split property computation into separate class
Everything related to property computation will be moved here and
eventually shared with cmGeneratorTarget.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 1c81081..84f43b3 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -267,9 +267,10 @@ public: bool operator()(cmTarget const* t1, cmTarget const* t2) const; }; -private: - bool HandleLocationPropertyPolicy(cmMakefile* context) const; + std::string ImportedGetFullPath(const std::string& config, + bool implib) const; +private: const char* GetSuffixVariableInternal(bool implib) const; const char* GetPrefixVariableInternal(bool implib) const; @@ -278,9 +279,6 @@ private: void SetPropertyDefault(const std::string& property, const char* default_value); - std::string ImportedGetFullPath(const std::string& config, - bool implib) const; - private: cmPropertyMap Properties; std::set<std::string> SystemIncludeDirectories; |