From 4c43b6a467ae834e3ee03020df58325e20d52eb3 Mon Sep 17 00:00:00 2001 From: Kefu CHai Date: Mon, 23 Dec 2024 10:11:04 +0800 Subject: [PATCH] build: remove messages used for debugging d6182fa6 introduced a target for checking include style, but also added a message printing out the sources to be checked when running cmake. this message is only used for debugging and is distracting. so let's remove it. Signed-off-by: Kefu Chai --- cmake/CheckIncludeStyle.cmake | 1 - 1 file changed, 1 deletion(-) diff --git a/cmake/CheckIncludeStyle.cmake b/cmake/CheckIncludeStyle.cmake index d6841e043c..b4feed693f 100644 --- a/cmake/CheckIncludeStyle.cmake +++ b/cmake/CheckIncludeStyle.cmake @@ -7,7 +7,6 @@ find_package (Python3 COMPONENTS Interpreter) function (seastar_check_include_style target library) get_target_property (sources ${library} SOURCES) set (check-target "${target}-${library}") - message("${sources}") add_custom_target("${check-target}" COMMAND Python3::Interpreter ${CMAKE_CURRENT_LIST_DIR}/cmake/check-seastar-include-style.py ${sources} WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"