From dac19a7951e7b8ce62f311dee208936e60e02516 Mon Sep 17 00:00:00 2001 From: Oscar Fuentes Date: Fri, 14 Aug 2009 19:56:04 +0000 Subject: [PATCH] CMake: Corrected variable check. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79030 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/X86/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- 2.34.1