diff options
author | Brad King <brad.king@kitware.com> | 2016-04-27 13:15:20 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-04-27 13:15:20 (GMT) |
commit | 8a00c16b59591fd9b7ab1b2628f0394d6a93c7b1 (patch) | |
tree | f6145cd92f36843ed83b7f36d98213059e1d97e3 /Source/cmGlobalVisualStudio8Generator.h | |
parent | a594b79b3cd7541ecfbcaaf7247049b172c15f41 (diff) | |
parent | 571bedec2970df42b9f3666e17728a7511d32b47 (diff) | |
download | CMake-8a00c16b59591fd9b7ab1b2628f0394d6a93c7b1.zip CMake-8a00c16b59591fd9b7ab1b2628f0394d6a93c7b1.tar.gz CMake-8a00c16b59591fd9b7ab1b2628f0394d6a93c7b1.tar.bz2 |
Merge topic 'vs-old-express-no-folders'
571bedec VS: Ignore USE_FOLDER property on VS versions that do not support it
0c58d2d0 VS: Detect VS 8 and 9 Express editions
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio8Generator.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.h b/Source/cmGlobalVisualStudio8Generator.h index b3093cc..6eb8450 100644 --- a/Source/cmGlobalVisualStudio8Generator.h +++ b/Source/cmGlobalVisualStudio8Generator.h @@ -66,6 +66,9 @@ public: virtual bool TargetsWindowsCE() const { return !this->WindowsCEVersion.empty(); } + /** Is the installed VS an Express edition? */ + bool IsExpressEdition() const { return this->ExpressEdition; } + protected: virtual void AddExtraIDETargets(); virtual const char* GetIDEVersion() { return "8.0"; } @@ -94,8 +97,11 @@ protected: const char* path, const cmGeneratorTarget *t); + bool UseFolderProperty(); + std::string Name; std::string WindowsCEVersion; + bool ExpressEdition; private: class Factory; |