summaryrefslogtreecommitdiffstats
path: root/dev/MinGfx/cmake/MessageMacros.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'dev/MinGfx/cmake/MessageMacros.cmake')
-rw-r--r--dev/MinGfx/cmake/MessageMacros.cmake17
1 files changed, 17 insertions, 0 deletions
diff --git a/dev/MinGfx/cmake/MessageMacros.cmake b/dev/MinGfx/cmake/MessageMacros.cmake
new file mode 100644
index 0000000..4628e5c
--- /dev/null
+++ b/dev/MinGfx/cmake/MessageMacros.cmake
@@ -0,0 +1,17 @@
+# This file is part of the MinVR cmake build system.
+# See the main MinVR/CMakeLists.txt file for authors, copyright, and license info.
+
+
+macro(h1 TITLE)
+ string(TOUPPER ${TITLE} TITLE)
+ message(STATUS "\n\n==== ${TITLE} ====")
+endmacro()
+
+macro(h2 TITLE)
+ message(STATUS "\n* ${TITLE}")
+endmacro()
+
+macro(h3 TITLE)
+ message(STATUS "- ${TITLE}")
+endmacro()
+