mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
check for libMali.so in additional locations
This commit is contained in:
parent
e2bb889d01
commit
a97a8a3090
|
@ -26,9 +26,11 @@ else()
|
|||
endif()
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
#check if we're running on olinuxino
|
||||
#check if we're running on olinuxino / odroid / etc
|
||||
MESSAGE("Looking for libMali.so")
|
||||
if(EXISTS "/usr/lib/libMali.so")
|
||||
if(EXISTS "/usr/lib/libMali.so" OR
|
||||
EXISTS "/usr/lib/arm-linux-gnueabihf/libMali.so" OR
|
||||
EXISTS "/usr/lib/aarch64-linux-gnu/libMali.so")
|
||||
MESSAGE("libMali.so found")
|
||||
set(GLSystem "OpenGL ES")
|
||||
else()
|
||||
|
|
Loading…
Reference in a new issue