From 0cc3a4544d5350bdf76d880277b863df4621ae3a Mon Sep 17 00:00:00 2001 From: silverqx Date: Wed, 21 Aug 2024 17:25:42 +0200 Subject: [PATCH] cmake updated function comment --- cmake/CommonModules/CsDebug.cmake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmake/CommonModules/CsDebug.cmake b/cmake/CommonModules/CsDebug.cmake index 5522ea125..a98cf7f14 100644 --- a/cmake/CommonModules/CsDebug.cmake +++ b/cmake/CommonModules/CsDebug.cmake @@ -8,7 +8,8 @@ function(cs_verbose_makefile) set(CMAKE_VERBOSE_MAKEFILE ON) endfunction() -# Print all CMake variables +# Print all CMake variables (excluding all CMake variables by default) +# cs_print_vars() == cs_print_vars(yes) function(cs_print_vars) set(exclude_cmake yes) if(ARGC GREATER_EQUAL 1 AND DEFINED ARGV0 AND NOT ARGV0)