Merge pull request #1354 from msabwat/emscripten
fix #1345: don't remove big endian test for other platforms
This commit is contained in:
commit
adb888920e
|
@ -162,7 +162,7 @@ endif()
|
||||||
|
|
||||||
#-----------------------------------------------------------------------------
|
#-----------------------------------------------------------------------------
|
||||||
# Big endian test:
|
# Big endian test:
|
||||||
if (!EMSCRIPTEN)
|
if (NOT EMSCRIPTEN)
|
||||||
include (${CMAKE_ROOT}/Modules/TestBigEndian.cmake)
|
include (${CMAKE_ROOT}/Modules/TestBigEndian.cmake)
|
||||||
TEST_BIG_ENDIAN(OPJ_BIG_ENDIAN)
|
TEST_BIG_ENDIAN(OPJ_BIG_ENDIAN)
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Reference in New Issue