aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/ryml/ext/c4core/cmake/PrintVar.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/ryml/ext/c4core/cmake/PrintVar.cmake')
-rw-r--r--thirdparty/ryml/ext/c4core/cmake/PrintVar.cmake27
1 files changed, 0 insertions, 27 deletions
diff --git a/thirdparty/ryml/ext/c4core/cmake/PrintVar.cmake b/thirdparty/ryml/ext/c4core/cmake/PrintVar.cmake
deleted file mode 100644
index acd04e55b..000000000
--- a/thirdparty/ryml/ext/c4core/cmake/PrintVar.cmake
+++ /dev/null
@@ -1,27 +0,0 @@
-function(status)
- message(STATUS "${ARGV}")
-endfunction()
-
-function(print_var var)
- message(STATUS "${var}=${${var}} ${ARGN}")
-endfunction()
-
-function(print_vars)
- foreach(a ${ARGN})
- message(STATUS "${a}=${${a}}")
- endforeach(a)
-endfunction()
-
-function(debug_var debug var)
- if(${debug})
- message(STATUS "${var}=${${var}} ${ARGN}")
- endif()
-endfunction()
-
-function(debug_vars debug)
- if(${debug})
- foreach(a ${ARGN})
- message(STATUS "${a}=${${a}}")
- endforeach(a)
- endif()
-endfunction()