cmake: move functions to src/cmake
[vpp.git] / src / cmake / message.cmake
1 # Copyright (c) 2018 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 ##############################################################################
15 # Highlight WARNING and ERROR messages
16 ##############################################################################
17 function(message)
18   list(GET ARGV 0 type)
19   string(ASCII 27 esc)
20   set(red "${esc}[1;31m")
21   set(yellow "${esc}[1;33m")
22   set(reset "${esc}[m")
23   if(type STREQUAL FATAL_ERROR OR type STREQUAL SEND_ERROR)
24     list(REMOVE_AT ARGV 0)
25     _message(${type} "${red}${ARGV}${reset}")
26   elseif(type STREQUAL WARNING)
27     list(REMOVE_AT ARGV 0)
28     _message(STATUS "${yellow}${ARGV}${reset}")
29   elseif(type STREQUAL STATUS)
30     list(REMOVE_AT ARGV 0)
31     _message(STATUS "${ARGV}")
32   else()
33     _message(${ARGV})
34   endif()
35 endfunction()
36