mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
Missing -lEGL when -DUSING_EGL=ON
Related to #9565 I tested only on ARM Linux (Ubuntu 14.04 on Odroid U3). Qt is building fine and working.
This commit is contained in:
parent
d0d2675645
commit
4b59fe6dac
@ -129,6 +129,10 @@ if(NOT OPENGL_LIBRARIES AND USING_GLES2)
|
||||
set(OPENGL_LIBRARIES GLESv2)
|
||||
endif()
|
||||
|
||||
if(USING_EGL)
|
||||
set(OPENGL_LIBRARIES ${OPENGL_LIBRARIES} EGL)
|
||||
endif()
|
||||
|
||||
if(NOT OPENGL_LIBRARIES)
|
||||
find_package(OpenGL REQUIRED)
|
||||
endif()
|
||||
|
Loading…
Reference in New Issue
Block a user