From d6bfe504ae2046b8cade8f08cc435bbeaf01f050 Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Wed, 4 Apr 2018 08:13:28 +0100 Subject: [PATCH] When Boost is not found via CMake, tell what exact features are disabled --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4dc7b063..d69d1f1e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -192,6 +192,7 @@ if(Boost_LOCALE_FOUND AND GETTEXT_MSGFMT_EXECUTABLE) set(HAVE_I18N true) else() set(HAVE_I18N false) + message(STATUS "Boost.Locale is not found, disabling i18n support") endif() if(HAVE_I18N AND GETTEXT_MSGMERGE_EXECUTABLE)