summaryrefslogtreecommitdiffstats
path: root/dev/a2-carsoccer/cmake/MessageMacros.cmake
blob: 4628e5c5f3ece080e93c4f975114f34d70e9e19e (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()