From 8153c1560b64dead437aee854b610522e54768fe Mon Sep 17 00:00:00 2001 From: "Lubomir I. Ivanov" Date: Sat, 18 Apr 2015 15:22:12 +0300 Subject: [PATCH] cmake: fix message for NO_MARBLE Signed-off-by: Lubomir I. Ivanov Signed-off-by: Dirk Hohndel --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 319f7d0e3..ecf91f1b4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -62,7 +62,7 @@ if(NOT NO_MARBLE) endif() if(NO_MARBLE) - message(STATUS marble NOT AVAIL) + message(STATUS "building without marble widget support") add_definitions(-DNO_MARBLE) set(MARBLE_LIBRARIES "") endif()