SVN commit 1195468 by aheinecke: Disable boost autolinking for all MSVC builds instead of just WINCE M +4 -1 CMakeLists.txt --- trunk/KDE/kdepimlibs/CMakeLists.txt #1195467:1195468 @@ -131,9 +131,12 @@ if(WINCE) set(STATIC_LIBRARY ON) add_definitions(-DKDELIBS_STATIC_LIBS) - add_definitions(-DBOOST_ALL_NO_LIB) endif(WINCE) +if(MSVC) + add_definitions(-DBOOST_ALL_NO_LIB) +endif(MSVC) + if(STATIC_LIBRARY) set(LIBRARY_TYPE STATIC) add_definitions(-DKDEPIM_STATIC_LIBS)