diff options
author | Brad King <brad.king@kitware.com> | 2021-01-11 16:07:26 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-01-28 17:47:58 (GMT) |
commit | eea61268e6f755e70a91770f7f512e29bc6a288c (patch) | |
tree | f860ee85288cf86669ff86d5638128804da94a01 | |
parent | 121509250734f420cd48a64e171ba155ade3cd59 (diff) | |
download | CMake-eea61268e6f755e70a91770f7f512e29bc6a288c.zip CMake-eea61268e6f755e70a91770f7f512e29bc6a288c.tar.gz CMake-eea61268e6f755e70a91770f7f512e29bc6a288c.tar.bz2 |
cmInstallExportGenerator: Add method to get installed file name
-rw-r--r-- | Source/cmInstallExportGenerator.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmInstallExportGenerator.h b/Source/cmInstallExportGenerator.h index dd8624b..1f038cf 100644 --- a/Source/cmInstallExportGenerator.h +++ b/Source/cmInstallExportGenerator.h @@ -44,8 +44,11 @@ public: const std::string& GetNamespace() const { return this->Namespace; } + std::string const& GetMainImportFile() const { return this->MainImportFile; } + std::string const& GetDestination() const { return this->Destination; } std::string GetDestinationFile() const; + std::string GetFileName() const { return this->FileName; } protected: void GenerateScript(std::ostream& os) override; |