diff options
author | Nils Gladitz <nilsgladitz@gmail.com> | 2014-09-27 15:34:39 (GMT) |
---|---|---|
committer | Nils Gladitz <nilsgladitz@gmail.com> | 2014-09-27 15:34:39 (GMT) |
commit | d48c781fc2e637fd9605775f44f4360bec6a59d9 (patch) | |
tree | 08a190d00835a9fb230fcf3dae6956b19dffabc4 /Source/cmInstalledFile.cxx | |
parent | 58dc05de9e8e130b0fc188ff510826d649d62aff (diff) | |
download | CMake-d48c781fc2e637fd9605775f44f4360bec6a59d9.zip CMake-d48c781fc2e637fd9605775f44f4360bec6a59d9.tar.gz CMake-d48c781fc2e637fd9605775f44f4360bec6a59d9.tar.bz2 |
CPackWiX: Extend CPACK_WIX_ACL to support directories
Diffstat (limited to 'Source/cmInstalledFile.cxx')
-rw-r--r-- | Source/cmInstalledFile.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmInstalledFile.cxx b/Source/cmInstalledFile.cxx index 3483ecc..4b53752 100644 --- a/Source/cmInstalledFile.cxx +++ b/Source/cmInstalledFile.cxx @@ -77,6 +77,13 @@ void cmInstalledFile::AppendProperty(cmMakefile const* mf, } //---------------------------------------------------------------------------- +bool cmInstalledFile::HasProperty( + const std::string& prop) const +{ + return this->Properties.find(prop) != this->Properties.end(); +} + +//---------------------------------------------------------------------------- bool cmInstalledFile::GetProperty( const std::string& prop, std::string& value) const { |