diff options
author | Eric NOULARD <eric.noulard@gmail.com> | 2010-12-12 11:55:02 (GMT) |
---|---|---|
committer | Eric NOULARD <eric.noulard@gmail.com> | 2010-12-12 11:55:02 (GMT) |
commit | 6d94ea3692c5dd3aafaf8183e31f6060ca2a4669 (patch) | |
tree | 0bf27c6a4aa58962a2eff02e98f55e45d7978b1e /Source/CPack/cmCPackGenerator.h | |
parent | 1b98d99c28949347c7c6a1e5ee67ee8e49670277 (diff) | |
download | CMake-6d94ea3692c5dd3aafaf8183e31f6060ca2a4669.zip CMake-6d94ea3692c5dd3aafaf8183e31f6060ca2a4669.tar.gz CMake-6d94ea3692c5dd3aafaf8183e31f6060ca2a4669.tar.bz2 |
CPack use IsOn when it's better than IsSet
This authorize more control because one can set
CPACK_ARCHIVE_COMPONENT_INSTALL to ON globally
and then set it selectively to OFF inside
a CPack project config file.
Sidenote: GetOption ought to be a 'const' method.
Diffstat (limited to 'Source/CPack/cmCPackGenerator.h')
-rw-r--r-- | Source/CPack/cmCPackGenerator.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/CPack/cmCPackGenerator.h b/Source/CPack/cmCPackGenerator.h index c450763..f44a334 100644 --- a/Source/CPack/cmCPackGenerator.h +++ b/Source/CPack/cmCPackGenerator.h @@ -88,8 +88,9 @@ public: //! Set and get the options void SetOption(const char* op, const char* value); void SetOptionIfNotSet(const char* op, const char* value); - const char* GetOption(const char* op); + const char* GetOption(const char* op) const; bool IsSet(const char* name) const; + bool IsOn(const char* name) const; //! Set all the variables int SetCMakeRoot(); |