CMake: Fix build on ppc64

ppc64le was fixed before, but ppc64 (big-endian) was still failing.
This commit is contained in:
pkubaj
2020-01-03 11:29:32 +01:00
committed by jp9000
parent f0c540dc8c
commit 03ab727495
3 changed files with 3 additions and 3 deletions

View File

@@ -23,7 +23,7 @@ add_library(media-playback STATIC
${media-playback_SOURCES}
)
if(CMAKE_SYSTEM_PROCESSOR MATCHES "^(powerpc|ppc)64le")
if(CMAKE_SYSTEM_PROCESSOR MATCHES "^(powerpc|ppc)64(le)?")
target_compile_options(media-playback
PUBLIC
-mvsx)