From f9a05c7cae10c05b701003f8ed848d0bfef8290a Mon Sep 17 00:00:00 2001 From: Alexey Edelev Date: Mon, 24 Feb 2025 15:10:34 +0100 Subject: [PATCH] Make PlatformGraphics lookup QUIET Let's do not litter user's logs with our internals. Pick-to: 6.9 6.8 Change-Id: I79e9210960f1298a6e8e2b6f10e1bfefdbfede7f Reviewed-by: Alexandru Croitor --- cmake/3rdparty/extra-cmake-modules/find-modules/FindEGL.cmake | 2 +- cmake/FindGLESv2.cmake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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()