diff --git a/cmake/3rdparty/extra-cmake-modules/find-modules/FindEGL.cmake b/cmake/3rdparty/extra-cmake-modules/find-modules/FindEGL.cmake index 4ab6e284e71..420d06bbba2 100644 --- a/cmake/3rdparty/extra-cmake-modules/find-modules/FindEGL.cmake +++ b/cmake/3rdparty/extra-cmake-modules/find-modules/FindEGL.cmake @@ -120,7 +120,7 @@ list(APPEND CMAKE_REQUIRED_LIBRARIES "${EGL_LIBRARY}") list(APPEND CMAKE_REQUIRED_INCLUDES "${EGL_INCLUDE_DIR}") list(APPEND CMAKE_REQUIRED_DEFINITIONS "${EGL_DEFINITIONS}") -find_package(PlatformGraphics) +find_package(PlatformGraphics QUIET) if(TARGET PlatformGraphics::PlatformGraphics) platform_graphics_extend_check_cxx_source_required_variables() endif() diff --git a/cmake/FindGLESv2.cmake b/cmake/FindGLESv2.cmake index d615a300f48..b28d8a14c16 100644 --- a/cmake/FindGLESv2.cmake +++ b/cmake/FindGLESv2.cmake @@ -21,7 +21,7 @@ else() set(_includes "${CMAKE_REQUIRED_INCLUDES}") list(APPEND CMAKE_REQUIRED_INCLUDES "${GLESv2_INCLUDE_DIR}") - find_package(PlatformGraphics) + find_package(PlatformGraphics QUIET) if(TARGET PlatformGraphics::PlatformGraphics) platform_graphics_extend_check_cxx_source_required_variables() endif()