diff options
author | Michele Calgaro <[email protected]> | 2024-03-08 17:06:46 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-03-08 17:09:27 +0900 |
commit | 843bdb504463df9cc80caea6cf6ac7e27bacfb04 (patch) | |
tree | d7cb621fcbbb1eb5435bd71378786f5f173ced73 | |
parent | 41f6d5afec703320378e38c0bcefb064d42337e4 (diff) | |
download | gwenview-843bdb504463df9cc80caea6cf6ac7e27bacfb04.tar.gz gwenview-843bdb504463df9cc80caea6cf6ac7e27bacfb04.zip |
Fix cmake conversion for ix86 archs
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 90c486fe47b607df9ee6141c105fe18019cfb0d0)
-rw-r--r-- | src/imageutils/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/imageutils/CMakeLists.txt b/src/imageutils/CMakeLists.txt index 9681a4a..88257bd 100644 --- a/src/imageutils/CMakeLists.txt +++ b/src/imageutils/CMakeLists.txt @@ -11,7 +11,7 @@ include_directories( set( gvimageutils_SRCS imageutils.cpp jpegcontent.cpp scale.cpp transupp.c croppedqimage.cpp ) if( HAVE_X86_MMX ) - list( gvimageutils_SRCS APPEND _SRCS asm_scale.S ) + list( APPEND gvimageutils_SRCS asm_scale.S ) # Force to use C compiler for asm_scale.S instead of ASM # because it contains mixed code - ASM with C definitions |