diff options
author | Stephan Vedder <stephan.vedder@gmail.com> | 2019-05-15 22:50:01 +0200 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2019-06-10 06:49:34 -0500 |
commit | c6f8ca2bc6b5bd8ca8842326f74e0cff007766ad (patch) | |
tree | 160c85c6bd8db48910ba84558731632d785f2583 /CMakeLists.txt | |
parent | 4dabadaf4dd5dc971174af6e861acaf5a16b8f93 (diff) | |
download | portable-c6f8ca2bc6b5bd8ca8842326f74e0cff007766ad.tar.gz portable-c6f8ca2bc6b5bd8ca8842326f74e0cff007766ad.tar.bz2 portable-c6f8ca2bc6b5bd8ca8842326f74e0cff007766ad.zip |
Enable masm compilation under windows
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a6a7554..af287a4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
@@ -289,7 +289,7 @@ if(ENABLE_ASM) | |||
289 | endif() | 289 | endif() |
290 | elseif(APPLE AND "${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "x86_64") | 290 | elseif(APPLE AND "${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "x86_64") |
291 | set(HOST_ASM_MACOSX_X86_64 true) | 291 | set(HOST_ASM_MACOSX_X86_64 true) |
292 | elseif(MSVC AND "${CMAKE_GENERATOR}" MATCHES "Win64" AND FALSE) | 292 | elseif(MSVC AND "${CMAKE_SYSTEM_PROCESSOR}" MATCHES "AMD64") |
293 | # XXX Disabled for now, CMake's MASM support seems to either never | 293 | # XXX Disabled for now, CMake's MASM support seems to either never |
294 | # build supply ASM or build it with the C compiler in a mode where it | 294 | # build supply ASM or build it with the C compiler in a mode where it |
295 | # does not parse correctly. It might be easier to get NASM support working. | 295 | # does not parse correctly. It might be easier to get NASM support working. |