From 44dd6fa7dd7f68136e14d2270dff0a080aa5ce13 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Date: Mon, 14 Apr 2025 09:10:25 +0200 Subject: [PATCH] Relax warning on IWYU not found to status message --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d08a72b..14ab1b0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2021-2024 Barcelona Supercomputing Center (BSC) +# Copyright (c) 2021-2025 Barcelona Supercomputing Center (BSC) # SPDX-License-Identifier: GPL-3.0-or-later cmake_minimum_required(VERSION 3.20) @@ -79,7 +79,7 @@ if(IWYU) set(CMAKE_C_INCLUDE_WHAT_YOU_USE ${IWYU_CMD}) message(STATUS "IWYU found") else() - message(WARNING "IWYU not found, skipping") + message(STATUS "IWYU not found, skipping") endif() # Required for clock_gettime() in glibc <= 2.17