summaryrefslogtreecommitdiff
path: root/Meta
diff options
context:
space:
mode:
authorTimothy Flynn <trflynn89@pm.me>2022-09-11 16:10:39 -0400
committerLinus Groh <mail@linusgroh.de>2022-09-11 21:40:15 +0100
commitbe41b191465ac06690ac894fd50fb0b28b45f8d2 (patch)
tree7f1258fda5dea80f529a710016c84f0efd6b4fc7 /Meta
parent2612d23032f819acf221281a09c878cd63d157e3 (diff)
downloadserenity-be41b191465ac06690ac894fd50fb0b28b45f8d2.zip
Meta: Do not log CMake version on each CMake invocation
It is a tad verbose to print this each time CMake runs.
Diffstat (limited to 'Meta')
-rw-r--r--Meta/CMake/check_for_dependencies.cmake4
1 files changed, 1 insertions, 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()