Re: [CMake] masm msvc

2011-08-23 Thread Alexander Neundorf
Hi, On Monday 15 August 2011, Micha Renner wrote: This script... # Copy paste from CMake Wiki # Works only if CMake runs in the Visual Studio DOS Window SET(MASMFound FALSE) # test whether it is a x86 machine and masm is available IF(${CMAKE_SYSTEM_PROCESSOR} MATCHES x86)

[CMake] masm msvc

2011-08-15 Thread Micha Renner
This script... # Copy paste from CMake Wiki # Works only if CMake runs in the Visual Studio DOS Window SET(MASMFound FALSE) # test whether it is a x86 machine and masm is available IF(${CMAKE_SYSTEM_PROCESSOR} MATCHES x86) ENABLE_LANGUAGE(ASM_MASM)