From 203cc694ddb58512499ef8983f6ff0d725e9fb5b Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 14 Jan 2021 15:49:25 -0500 Subject: cmInstallGenerator: Add accessors for settings common to all installers --- Source/cmInstallGenerator.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/cmInstallGenerator.h b/Source/cmInstallGenerator.h index 64ee9ed..6cd9ff9 100644 --- a/Source/cmInstallGenerator.h +++ b/Source/cmInstallGenerator.h @@ -62,6 +62,10 @@ public: virtual bool Compute(cmLocalGenerator*) { return true; } + std::string const& GetComponent() const { return this->Component; } + + bool GetExcludeFromAll() const { return this->ExcludeFromAll; } + cmListFileBacktrace const& GetBacktrace() const { return this->Backtrace; } protected: -- cgit v0.12