summaryrefslogtreecommitdiffstats
path: root/Source/cmTargetPropertyComputer.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2016-10-12 22:18:24 (GMT)
committerStephen Kelly <steveire@gmail.com>2016-10-15 09:14:21 (GMT)
commit05251e6d80b03ae14d6a89765f14c2eb10979bd4 (patch)
tree02813e4d853ef97582de7d4c6c0dd6f97e61cbb1 /Source/cmTargetPropertyComputer.h
parentfbf1721c94b40ea86eeb183a1916f2066eb64bdc (diff)
downloadCMake-05251e6d80b03ae14d6a89765f14c2eb10979bd4.zip
CMake-05251e6d80b03ae14d6a89765f14c2eb10979bd4.tar.gz
CMake-05251e6d80b03ae14d6a89765f14c2eb10979bd4.tar.bz2
cmTargetPropertyComputer: Move whitelist check from cmTarget
Diffstat (limited to 'Source/cmTargetPropertyComputer.h')
-rw-r--r--Source/cmTargetPropertyComputer.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/cmTargetPropertyComputer.h b/Source/cmTargetPropertyComputer.h
index b7c1df4..1d2e4ed 100644
--- a/Source/cmTargetPropertyComputer.h
+++ b/Source/cmTargetPropertyComputer.h
@@ -23,6 +23,8 @@ public:
static std::map<std::string, std::string> ComputeFileLocations(
cmTarget const* tgt);
+ static bool WhiteListedInterfaceProperty(const std::string& prop);
+
private:
static bool HandleLocationPropertyPolicy(std::string const& tgtName,
cmMessenger* messenger,
@@ -35,9 +37,8 @@ private:
cmMessenger* messenger,
cmListFileBacktrace const& context);
- static const char* GetSources(cmTarget const* tgt,
- cmMessenger* messenger,
- cmListFileBacktrace const& context);
+ static const char* GetSources(cmTarget const* tgt, cmMessenger* messenger,
+ cmListFileBacktrace const& context);
};
#endif