From 096fe90d5808f24d640544473646cc5210469af7 Mon Sep 17 00:00:00 2001 From: "l.feng" <43399351+msclock@users.noreply.github.com> Date: Fri, 13 Dec 2024 16:06:30 +0800 Subject: [PATCH] perf: silence ccache not found Signed-off-by: l.feng <43399351+msclock@users.noreply.github.com> --- cmake/build/Ccache.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/build/Ccache.cmake b/cmake/build/Ccache.cmake index e8731d8..6e4c70f 100644 --- a/cmake/build/Ccache.cmake +++ b/cmake/build/Ccache.cmake @@ -28,7 +28,7 @@ find_program( DOC "ccache executable") if(NOT CCACHE_COMMAND) - message(WARNING "No ccache found, disable ccache optimization.") + message(STATUS "No ccache found, disable ccache optimization.") return() endif()