| 18 | } |
| 19 | |
| 20 | bool cmWIXAccessControlList::Apply() |
| 21 | { |
| 22 | auto entries = this->InstalledFile.GetPropertyAsList("CPACK_WIX_ACL"); |
| 23 | |
| 24 | for (auto const& entry : entries) { |
| 25 | this->CreatePermissionElement(entry); |
| 26 | } |
| 27 | |
| 28 | return true; |
| 29 | } |
| 30 | |
| 31 | void cmWIXAccessControlList::CreatePermissionElement(std::string const& entry) |
| 32 | { |
no test coverage detected