From 8147e2a511f2ad1fa39b2ad5e77d547a736745a6 Mon Sep 17 00:00:00 2001 From: Michael Carlberg Date: Tue, 24 Jan 2017 13:02:55 +0100 Subject: [PATCH] fix(cmake): Font not found message --- cmake/utils.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/utils.cmake b/cmake/utils.cmake index 2a15cfe6..a6ce8f51 100644 --- a/cmake/utils.cmake +++ b/cmake/utils.cmake @@ -198,7 +198,7 @@ function(font_query output_variable fontname) set(output_variable "${output_variable}" PARENT_SCOPE) message(STATUS "Found font: ${output_variable}") else() - message_colored(WARNING "Font not found: ${fontname}" "33;1") + message_colored(STATUS "Font not found: ${fontname}" "33;1") endif() endfunction()