kicad-developers team mailing list archive
-
kicad-developers team
-
Mailing list archive
-
Message #23092
[PATCH 04/19] FindwxWidgets.cmake: Show line number in debug output
---
CMakeModules/FindwxWidgets.cmake | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/CMakeModules/FindwxWidgets.cmake b/CMakeModules/FindwxWidgets.cmake
index 99c07b6..471996c 100644
--- a/CMakeModules/FindwxWidgets.cmake
+++ b/CMakeModules/FindwxWidgets.cmake
@@ -150,10 +150,12 @@
# Helper macro to control the debugging output globally. There are
# two versions for controlling how verbose your output should be.
macro(DBG_MSG _MSG)
-# message(STATUS "${_MSG}")
+# message(STATUS
+# "${CMAKE_CURRENT_LIST_FILE}(${CMAKE_CURRENT_LIST_LINE}): ${_MSG}")
endmacro()
macro(DBG_MSG_V _MSG)
-# message(STATUS "${_MSG}")
+# message(STATUS
+# "${CMAKE_CURRENT_LIST_FILE}(${CMAKE_CURRENT_LIST_LINE}): ${_MSG}")
endmacro()
# Clear return values in case the module is loaded more than once.
Follow ups
References