From c025bdbd921f6608bbbaf866196b6aefdce5bd36 Mon Sep 17 00:00:00 2001 From: Derek G Foster Date: Mon, 4 Nov 2024 11:32:20 -0800 Subject: [PATCH] Mark IWYU option as advanced (#170) The IWYU option is intended for internal use by developers. Signed-off-by: Derek Foster --- cmake/iwyu.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/iwyu.cmake b/cmake/iwyu.cmake index e478144..0f9dcd2 100644 --- a/cmake/iwyu.cmake +++ b/cmake/iwyu.cmake @@ -17,6 +17,7 @@ # cmake --build build >& iwyu.log option(IWYU "Run include-what-you-use" OFF) +mark_as_advanced(IWYU) if(IWYU) find_program(IWYU_PATH NAMES include-what-you-use iwyu)