From eea61268e6f755e70a91770f7f512e29bc6a288c Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 11 Jan 2021 11:07:26 -0500 Subject: cmInstallExportGenerator: Add method to get installed file name --- Source/cmInstallExportGenerator.h | 3 +++ 1 file changed, 3 insertions(+) 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; -- cgit v0.12