-
Notifications
You must be signed in to change notification settings - Fork 24
/
messages.cmake
67 lines (48 loc) · 1.18 KB
/
messages.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
set(ANTARES_ERROR_HAS_OCCURED false)
macro(OMESSAGE msg)
if(UNIX)
message(STATUS "[1;30m{antares}[0m ${msg}")
else()
message(STATUS "{antares} ${msg}")
endif()
endmacro()
macro(OMESSAGE_BOLD msg)
if(UNIX)
message(STATUS "[1;30m{antares}[0m [1;37m[1m${msg}[0m")
else()
message(STATUS "{antares} ${msg}")
endif()
endmacro()
macro(OMESSAGE_TITLE msg1 msg2)
if(UNIX)
message(STATUS "[1;30m{antares}[0m [1;32m${msg1}[0m[1;37m[1m${msg2}[0m")
else()
message(STATUS "{antares} ${msg1}${msg2}")
endif()
endmacro()
macro(OMESSAGE_MODULE msg)
OMESSAGE_TITLE("[module] " "${msg}")
endmacro()
macro(OWARNING msg)
if(UNIX)
message(STATUS "[1;33m{antares} [warning][0m ${msg}")
else()
message(STATUS "{antares} [WARNING] ${msg}")
endif()
endmacro()
macro(OERROR msg)
if(UNIX)
message(STATUS "[1;31m{antares} [error][0m ${msg}")
else()
message(STATUS "{antares} [ERROR] ${msg}")
endif()
set(ANTARES_ERROR_HAS_OCCURED true)
endmacro()
macro(OFATAL msg)
if(UNIX)
message(FATAL_ERROR "[1;31m{antares} [error][0m ${msg}")
else()
message(FATAL_ERROR "{antares} [ERROR] ${msg}")
endif()
set(ANTARES_ERROR_HAS_OCCURED true)
endmacro()