Fix ignored OpenGLES2 include path and cmake warning

master
sfan5 2021-04-16 23:39:16 +02:00
parent a106bfd456
commit 52c0384bd1
2 changed files with 5 additions and 2 deletions

View File

@ -42,7 +42,7 @@ else()
)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(OPENGLES2 DEFAULT_MSG OPENGLES2_LIBRARY OPENGLES2_INCLUDE_DIR)
find_package_handle_standard_args(OpenGLES2 DEFAULT_MSG OPENGLES2_LIBRARY OPENGLES2_INCLUDE_DIR)
find_path(EGL_INCLUDE_DIR EGL/egl.h
PATHS /usr/openwin/share/include
@ -59,7 +59,6 @@ else()
/usr/lib
)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(EGL DEFAULT_MSG EGL_LIBRARY EGL_INCLUDE_DIR)
endif()

View File

@ -513,6 +513,10 @@ include_directories(
${PROJECT_SOURCE_DIR}/script
)
if(ENABLE_GLES)
include_directories(${OPENGLES2_INCLUDE_DIR} ${EGL_INCLUDE_DIR})
endif()
if(USE_GETTEXT)
include_directories(${GETTEXT_INCLUDE_DIR})
endif()