summaryrefslogtreecommitdiffstats
path: root/cmake/QtLoadFilePrintVars.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/QtLoadFilePrintVars.cmake')
-rw-r--r--cmake/QtLoadFilePrintVars.cmake15
1 files changed, 0 insertions, 15 deletions
diff --git a/cmake/QtLoadFilePrintVars.cmake b/cmake/QtLoadFilePrintVars.cmake
deleted file mode 100644
index fe0f3ee8d2..0000000000
--- a/cmake/QtLoadFilePrintVars.cmake
+++ /dev/null
@@ -1,15 +0,0 @@
-# Load a file and print variables and their values
-#
-# IN_FILE: path to a file to be included
-# VARIABLES: list of variables to be printed
-
-cmake_minimum_required(VERSION 3.16)
-include("${IN_FILE}")
-
-# Print a magic comment that the caller must look for
-message(STATUS "---QtLoadFilePrintVars---")
-
-# Print the variables
-foreach(v IN LISTS VARIABLES)
- message(STATUS "${v} ${${v}}")
-endforeach()