summaryrefslogtreecommitdiff
path: root/Source/cmTarget.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2016-10-13 00:18:23 +0200
committerStephen Kelly <steveire@gmail.com>2016-10-15 11:14:21 +0200
commita55cac4ba475ff61da4146272246512a52247323 (patch)
treefa012fd82ac2c0c8433ea121b361bfcdb3027dfd /Source/cmTarget.h
parent705fcf522be16eee03b1757274b23ada6547e6bd (diff)
downloadcmake-a55cac4ba475ff61da4146272246512a52247323.tar.gz
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.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h
index 1c81081e05..84f43b3918 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;