blob: b2d08ee7e00f04605b8596dc5e3f2b005cae1b6b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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()
|