summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio10Generator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-08-07 16:58:25 (GMT)
committerBrad King <brad.king@kitware.com>2014-08-20 14:21:12 (GMT)
commita43f44000d12c1357eeed04e5a02d11236730dfa (patch)
tree9212c4495f8dc4896af1aaef1e8b42d69612ca40 /Source/cmGlobalVisualStudio10Generator.h
parentdf3b007d7f904f8de5877f3e05b629239af7220a (diff)
downloadCMake-a43f44000d12c1357eeed04e5a02d11236730dfa.zip
CMake-a43f44000d12c1357eeed04e5a02d11236730dfa.tar.gz
CMake-a43f44000d12c1357eeed04e5a02d11236730dfa.tar.bz2
VS: Move internal MasmEnabled member up to VS 7 generator
Move the member from cmGlobalVisualStudio10Generator to cmGlobalVisualStudio7Generator to make it useful for earlier versions of VS. Set the member to true only starting with cmGlobalVisualStudio8Generator since we will not implement MASM support for versions less than VS 8.
Diffstat (limited to 'Source/cmGlobalVisualStudio10Generator.h')
-rw-r--r--Source/cmGlobalVisualStudio10Generator.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/cmGlobalVisualStudio10Generator.h b/Source/cmGlobalVisualStudio10Generator.h
index 6245b28..11fa954 100644
--- a/Source/cmGlobalVisualStudio10Generator.h
+++ b/Source/cmGlobalVisualStudio10Generator.h
@@ -58,9 +58,6 @@ public:
/** Is the installed VS an Express edition? */
bool IsExpressEdition() const { return this->ExpressEdition; }
- /** Is the Microsoft Assembler enabled? */
- bool IsMasmEnabled() const { return this->MasmEnabled; }
-
/** The toolset name for the target platform. */
const char* GetPlatformToolset() const;
@@ -123,7 +120,6 @@ protected:
bool SystemIsWindowsPhone;
bool SystemIsWindowsStore;
bool ExpressEdition;
- bool MasmEnabled;
bool UseFolderProperty();