From a0b8a32f3e82ee29ea7952a0fadeeb5893cebf32 Mon Sep 17 00:00:00 2001 From: tobtoht Date: Thu, 13 Nov 2025 14:13:54 +0100 Subject: [PATCH] cmake: remove iwyu target --- CMakeLists.txt | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 69e39be6de..4841828862 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1190,13 +1190,3 @@ endif() # when ON - will install libwallet_merged into "lib" option(BUILD_GUI_DEPS "Build GUI dependencies." OFF) - -find_package(PythonInterp) -find_program(iwyu_tool_path NAMES iwyu_tool.py iwyu_tool) -if (iwyu_tool_path AND PYTHONINTERP_FOUND) - add_custom_target(iwyu - COMMAND "${PYTHON_EXECUTABLE}" "${iwyu_tool_path}" -p "${CMAKE_BINARY_DIR}" -- --no_fwd_decls - COMMENT "Running include-what-you-use tool" - VERBATIM - ) -endif()