From kde-commits Tue Apr 14 15:09:50 2009 From: Andreas Pakulat Date: Tue, 14 Apr 2009 15:09:50 +0000 To: kde-commits Subject: KDE/kdevplatform/plugins Message-Id: <1239721790.209579.7784.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=123972190717928 SVN commit 953811 by apaku: Produce a nice message when boost has not been found and the classbrowser is being disabled. M +1 -0 CMakeLists.txt --- trunk/KDE/kdevplatform/plugins/CMakeLists.txt #953810:953811 @@ -15,6 +15,7 @@ add_subdirectory(documentswitcher) macro_optional_find_package( Boost 1.35.0 ) +macro_log_feature( Boost_FOUND "Boost" "Boost libraries for enabling the classbrowser" "http://www.boost.org" FALSE "1.35.0" "The boost libraries are needed to build the Class Browser" ) if(Boost_FOUND) add_subdirectory(classbrowser) endif(Boost_FOUND)