From 417cfc2184878fc90ce75e0d09c32f4eb2b3aa84 Mon Sep 17 00:00:00 2001 From: bgk Date: Sun, 4 Jan 2009 09:03:26 +0000 Subject: [PATCH] Fixed build with asm scalers --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 513c90af..b69547a2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -109,9 +109,9 @@ ENDIF( NOT USE_ASM_CORE ) # Compiler flags IF ( WIN32 ) - SET( CMAKE_ASM_FLAGS "-Isrc/hq/asm/ -O1 -w-orphan-labels") + SET( CMAKE_ASM_FLAGS "-Isrc/filters/hq/asm/ -O1 -w-orphan-labels") ELSE ( WIN32 ) - SET( CMAKE_ASM_FLAGS "-Isrc/hq/asm/ -O1 -DELF -w-orphan-labels") + SET( CMAKE_ASM_FLAGS "-Isrc/filters/hq/asm/ -O1 -DELF -w-orphan-labels") ENDIF ( WIN32 ) SET( CMAKE_C_FLAGS "-O3 -Wall") SET( CMAKE_CXX_FLAGS "-O3 -Wall")