summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 09afcf882..06d9f6dd2 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -447,3 +447,11 @@ endif()
if (MAKE_TESTS)
add_subdirectory(tests)
endif()
+
+# useful for debugging CMake issues
+#
+# message(STATUS "print variables")
+# get_cmake_property(_variableNames VARIABLES)
+# foreach(_variableName ${_variableNames})
+# message(STATUS "${_variableName}=${${_variableName}}")
+# endforeach()