summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio8Generator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-04-27 13:15:20 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2016-04-27 13:15:20 (GMT)
commit8a00c16b59591fd9b7ab1b2628f0394d6a93c7b1 (patch)
treef6145cd92f36843ed83b7f36d98213059e1d97e3 /Source/cmGlobalVisualStudio8Generator.h
parenta594b79b3cd7541ecfbcaaf7247049b172c15f41 (diff)
parent571bedec2970df42b9f3666e17728a7511d32b47 (diff)
downloadCMake-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.h6
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;