Skip to content

Commit 6cfd213

Browse files
committed
This fixes PR compilation
1 parent 2863b7d commit 6cfd213

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/apps/ojph_expand/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if(EMSCRIPTEN)
2121
endif()
2222
else()
2323
if (NOT OJPH_DISABLE_SIMD)
24-
if (("${OJPH_TARGET_ARCH}" MATCHES "OJPH_ARCH_X86_64")
24+
if (("${OJPH_TARGET_ARCH}" MATCHES "OJPH_ARCH_X86_64")
2525
OR ("${OJPH_TARGET_ARCH}" MATCHES "OJPH_ARCH_I386")
2626
OR MULTI_GEN_X86_64)
2727

tests/mse_pae.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ project (mse_pae DESCRIPTION "A program to find MSE and peak absolute error betw
66
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
77

88
include_directories(../src/apps/common)
9-
include_directories(../src/core/common)
9+
include_directories(../src/core/openjph)
1010

1111
# Configure source files
1212
set(SOURCES mse_pae.cpp "../src/apps/others/ojph_img_io.cpp" "../src/core/others/ojph_message.cpp" "../src/core/others/ojph_file.cpp" "../src/core/others/ojph_mem.cpp" "../src/core/others/ojph_arch.cpp")
@@ -15,7 +15,7 @@ set(OJPH_IMG_IO_AVX2 "../src/apps/others/ojph_img_io_avx2.cpp")
1515

1616
# if SIMD are not disabled
1717
if (NOT OJPH_DISABLE_SIMD)
18-
if (("${OJPH_TARGET_ARCH}" MATCHES "OJPH_ARCH_X86_64")
18+
if (("${OJPH_TARGET_ARCH}" MATCHES "OJPH_ARCH_X86_64")
1919
OR ("${OJPH_TARGET_ARCH}" MATCHES "OJPH_ARCH_I386")
2020
OR MULTI_GEN_X86_64)
2121

0 commit comments

Comments
 (0)