KDE/kdepimlibs
Jarosław Staniek
staniek at kde.org
Sun Aug 23 16:27:35 CEST 2009
SVN commit 1014670 by staniek:
temp. fix unless we have graph library, not just headers
CCMAIL:kde-windows at kde.org
M +5 -1 CMakeLists.txt
--- trunk/KDE/kdepimlibs/CMakeLists.txt #1014669:1014670
@@ -30,7 +30,11 @@
############### Find the stuff we need ###############
set(Boost_MINIMUM_VERSION "1.33.1")
-find_package(Boost ${Boost_MINIMUM_VERSION} COMPONENTS graph)
+if (WIN32)
+ find_package(Boost ${Boost_MINIMUM_VERSION}) # (jstaniek) temp. fix unless we have graph library, not just headers
+else (WIN32)
+ find_package(Boost ${Boost_MINIMUM_VERSION} COMPONENTS graph)
+endif (WIN32)
macro_log_feature(Boost_FOUND "Boost" "Boost C++ Libraries" "http://www.boost.org" TRUE ${Boost_MINIMUM_VERSION} "The Boost libraries boost and boost-graph are required by several critical KDEPIM apps.")
#FindGpgme.cmake already handles the log message but we must ensure it is required.
More information about the Kde-windows
mailing list