From be41b191465ac06690ac894fd50fb0b28b45f8d2 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Sun, 11 Sep 2022 16:10:39 -0400 Subject: [PATCH] Meta: Do not log CMake version on each CMake invocation It is a tad verbose to print this each time CMake runs. --- Meta/CMake/check_for_dependencies.cmake | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Meta/CMake/check_for_dependencies.cmake b/Meta/CMake/check_for_dependencies.cmake index d216220cf3..bedde21f8e 100644 --- a/Meta/CMake/check_for_dependencies.cmake +++ b/Meta/CMake/check_for_dependencies.cmake @@ -23,6 +23,4 @@ if (CMAKE_VERSION VERSION_LESS 3.18.0) if (NOT GZIP_TOOL) message(FATAL_ERROR "Failed to locate gzip on your machine, please install it and re-read the SerenityOS build documentation.") endif() -else() - message(STATUS "Found cmake ${CMAKE_VERSION} - using CMake to uncompress") -endif() \ No newline at end of file +endif()