diff options
author | Patrick Gansterer <paroga@paroga.com> | 2013-08-05 14:34:10 (GMT) |
---|---|---|
committer | Patrick Gansterer <paroga@paroga.com> | 2013-08-05 14:34:10 (GMT) |
commit | 28e770cf6eb1be898e6904e85849f701ab71b5c1 (patch) | |
tree | 712be4a3c284977bb5b29cb96b9332c036ab8333 /Source/cmGlobalVisualStudio10Generator.h | |
parent | 1768014dfc8aee30430d57c8f984aad0abb15094 (diff) | |
download | CMake-28e770cf6eb1be898e6904e85849f701ab71b5c1.zip CMake-28e770cf6eb1be898e6904e85849f701ab71b5c1.tar.gz CMake-28e770cf6eb1be898e6904e85849f701ab71b5c1.tar.bz2 |
VS10: Add support for assembler code (#11536)
Use the masm BuildCustomizations, which are part of the Visual
Studio installation to allow compilation of asm files.
Diffstat (limited to 'Source/cmGlobalVisualStudio10Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio10Generator.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio10Generator.h b/Source/cmGlobalVisualStudio10Generator.h index dbe6044..00f8d33 100644 --- a/Source/cmGlobalVisualStudio10Generator.h +++ b/Source/cmGlobalVisualStudio10Generator.h @@ -54,6 +54,9 @@ 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(); @@ -83,6 +86,7 @@ protected: std::string PlatformToolset; bool ExpressEdition; + bool MasmEnabled; bool UseFolderProperty(); |