diff options
author | Brad King <brad.king@kitware.com> | 2021-01-14 20:49:25 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-01-28 17:47:58 (GMT) |
commit | 203cc694ddb58512499ef8983f6ff0d725e9fb5b (patch) | |
tree | a596a24299d3776d0fba36bebdb8f3f6edd27043 | |
parent | e32818dd76879d43b4cd84f7f72cd3f83dbecbd6 (diff) | |
download | CMake-203cc694ddb58512499ef8983f6ff0d725e9fb5b.zip CMake-203cc694ddb58512499ef8983f6ff0d725e9fb5b.tar.gz CMake-203cc694ddb58512499ef8983f6ff0d725e9fb5b.tar.bz2 |
cmInstallGenerator: Add accessors for settings common to all installers
-rw-r--r-- | Source/cmInstallGenerator.h | 4 |
1 files changed, 4 insertions, 0 deletions
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: |