diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2001-12-03 20:59:17 (GMT) |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2001-12-03 20:59:17 (GMT) |
commit | 906f0a33398a16e95b047f07e8dd1c8e7f3b0375 (patch) | |
tree | f5b37072fdbcf78e52fdf425fb62d5301520628c /Source/MFCDialog/CMakeCommandLineInfo.h | |
parent | 9214ad0ec663daaecdf7272175451433c9457254 (diff) | |
download | CMake-906f0a33398a16e95b047f07e8dd1c8e7f3b0375.zip CMake-906f0a33398a16e95b047f07e8dd1c8e7f3b0375.tar.gz CMake-906f0a33398a16e95b047f07e8dd1c8e7f3b0375.tar.bz2 |
Add /A and /G command-line param to carry the value of "Show Advanced" and generator name in desktop shortcuts
Diffstat (limited to 'Source/MFCDialog/CMakeCommandLineInfo.h')
-rw-r--r-- | Source/MFCDialog/CMakeCommandLineInfo.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/MFCDialog/CMakeCommandLineInfo.h b/Source/MFCDialog/CMakeCommandLineInfo.h index 997f25c..fd4d950 100644 --- a/Source/MFCDialog/CMakeCommandLineInfo.h +++ b/Source/MFCDialog/CMakeCommandLineInfo.h @@ -27,6 +27,8 @@ public: public: CString m_WhereSource; CString m_WhereBuild; + BOOL m_AdvancedValues; + CString m_GeneratorChoiceString; // Operations public: @@ -35,6 +37,8 @@ public: // Implementation public: virtual ~CMakeCommandLineInfo(); +protected: + static int GetBoolValue(const CString&); }; #endif // !defined(CMAKECOMMANDLINEINFO_H) |