diff options
author | Brad King <brad.king@kitware.com> | 2021-01-11 15:07:27 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-01-28 17:46:32 (GMT) |
commit | 5b23d8a7b1e913df8261895f77a2140199a0b812 (patch) | |
tree | fb4a3b64f0e76ffea8c575adeba03d7addc41fd8 /Source/cmInstallFilesGenerator.h | |
parent | 599027622652421deca0ca9ef749a48a24eea509 (diff) | |
download | CMake-5b23d8a7b1e913df8261895f77a2140199a0b812.zip CMake-5b23d8a7b1e913df8261895f77a2140199a0b812.tar.gz CMake-5b23d8a7b1e913df8261895f77a2140199a0b812.tar.bz2 |
cmInstallFilesGenerator: Factor out method to get list of files
Diffstat (limited to 'Source/cmInstallFilesGenerator.h')
-rw-r--r-- | Source/cmInstallFilesGenerator.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmInstallFilesGenerator.h b/Source/cmInstallFilesGenerator.h index 66145f4..7438440 100644 --- a/Source/cmInstallFilesGenerator.h +++ b/Source/cmInstallFilesGenerator.h @@ -32,6 +32,8 @@ public: std::string GetDestination(std::string const& config) const; std::string GetRename(std::string const& config) const; + std::vector<std::string> GetFiles(std::string const& config) const; + bool GetOptional() const { return this->Optional; } protected: void GenerateScriptActions(std::ostream& os, Indent indent) override; |