From: Oscar Fuentes Date: Fri, 14 Aug 2009 19:56:04 +0000 (+0000) Subject: CMake: Corrected variable check. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=dac19a7951e7b8ce62f311dee208936e60e02516;p=oota-llvm.git CMake: Corrected variable check. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79030 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/CMakeLists.txt b/lib/Target/X86/CMakeLists.txt index 05534233599..7c9f5d8c255 100644 --- a/lib/Target/X86/CMakeLists.txt +++ b/lib/Target/X86/CMakeLists.txt @@ -29,7 +29,7 @@ set(sources X86FastISel.cpp ) -if( CL_64 ) +if( CMAKE_CL_64 ) enable_language(ASM_MASM) set(sources ${sources} X86CompilationCallback_Win64.asm) endif()