diff options
author | Stephen Kelly <steveire@gmail.com> | 2016-10-12 22:18:24 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2016-10-15 09:14:21 (GMT) |
commit | 05251e6d80b03ae14d6a89765f14c2eb10979bd4 (patch) | |
tree | 02813e4d853ef97582de7d4c6c0dd6f97e61cbb1 /Source/cmTargetPropertyComputer.h | |
parent | fbf1721c94b40ea86eeb183a1916f2066eb64bdc (diff) | |
download | CMake-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.h | 7 |
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 |