From 8defaa6be516904f37ebbbd3af36bae5e16e3621 Mon Sep 17 00:00:00 2001 From: Kuba Serafinowski Date: Sat, 19 Nov 2011 13:29:40 +0000 Subject: [PATCH] fix misleading cmake message --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fed116ae0..5d6164829 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -108,7 +108,7 @@ macro_optional_find_package(LibAttica) macro_log_feature(LIBATTICA_FOUND "libattica" "Provides support for automatic fetching and managing of resolvers from the tomahawk website" "https://projects.kde.org/projects/kdesupport/attica" FALSE "" "") macro_optional_find_package(QuaZip) -macro_log_feature(QuaZip_FOUND "QuaZip" "Provides support for extracting downloaded resolvers autmatically. Will build internal copy instead." "http://quazip.sourceforge.net/" FALSE "" "") +macro_log_feature(QuaZip_FOUND "QuaZip" "Provides support for extracting downloaded resolvers automatically." "http://quazip.sourceforge.net/" FALSE "" "") IF( NOT QuaZip_FOUND ) add_subdirectory( ${CMAKE_SOURCE_DIR}/src/libtomahawk/thirdparty/quazip ) @@ -116,6 +116,7 @@ IF( NOT QuaZip_FOUND ) SET( QuaZip_LIBRARY quazip ) SET( QuaZip_LIBRARIES ${QuaZip_LIBRARY} ) SET( QuaZip_FOUND true ) + macro_log_feature(QuaZip_FOUND "QuaZip" "Provides support for extracting downloaded resolvers automatically. Building internal copy" "http://quazip.sourceforge.net/" FALSE "" "") # copy headers to build/quazip so we can use proper includes inside the code FILE( COPY ${CMAKE_SOURCE_DIR}/src/libtomahawk/thirdparty/quazip/quazip/ DESTINATION ${CMAKE_BINARY_DIR}/libtomahawk/thirdparty/quazip )