From 8c6ff26e12281c78c253105f0f778ae9e45fbe4d Mon Sep 17 00:00:00 2001 From: orbea Date: Wed, 16 Oct 2019 07:23:20 -0700 Subject: [PATCH] cmake: Try to fix travis windows builds. -- The ASM_NASM compiler identification is unknown -- Found assembler: nasm;yasm -- Configuring incomplete, errors occurred! --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 509755a4..371401a8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -242,7 +242,7 @@ if(AMD64 AND (ENABLE_ASM_CORE OR ENABLE_ASM_SCALERS OR ENABLE_MMX)) endif() if(ENABLE_ASM_CORE OR ENABLE_ASM_SCALERS) - enable_language(ASM_NASM) + enable_language(ASM) set(ASM_ENABLED ON) endif()