From fb4d31e56babc666788c814e717cd5138858e7c7 Mon Sep 17 00:00:00 2001 From: Michael Palimaka Date: Mon, 21 Dec 2015 21:47:42 +1100 Subject: [PATCH] Fix typos. REVIEW: 126114 --- autotest/CMakeLists.txt | 2 +- src/CMakeLists.txt | 6 +++--- src/plugins/backends/snore/CMakeLists.txt | 3 +-- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/autotest/CMakeLists.txt b/autotest/CMakeLists.txt index e4c1758..e454ffa 100644 --- a/autotest/CMakeLists.txt +++ b/autotest/CMakeLists.txt @@ -1,7 +1,7 @@ include(ECMAddTests) find_package(Qt5Test QUIET) -set_package_properties(Qt5Core PROPERTIES +set_package_properties(Qt5Test PROPERTIES DESCRIPTION "Qt5 unit testing framework" URL "http://www.qt.io" TYPE OPTIONAL diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 65131c5..cbdd07d 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -4,13 +4,13 @@ add_subdirectory(libsnore) if(Qt5Widgets_FOUND) ecm_optional_add_subdirectory(daemon) - add_feature_info(BUILD_daemon BUILD_daemon "Build and installd the snorenotify daemon which receives and redirects notifications.") + add_feature_info(BUILD_daemon BUILD_daemon "Build and install the snorenotify daemon which receives and redirects notifications.") ecm_optional_add_subdirectory(settings) - add_feature_info(BUILD_settings BUILD_settings "Build and installd the snorensettings application which allows the modification of the settings for all applications using libsnore.") + add_feature_info(BUILD_settings BUILD_settings "Build and install the snorensettings application which allows the modification of the settings for all applications using libsnore.") endif() ecm_optional_add_subdirectory(snoresend) -add_feature_info(BUILD_snoresend BUILD_snoresend "Build and installd the snoresend application, a commandline interface for sendig notifications.") +add_feature_info(BUILD_snoresend BUILD_snoresend "Build and install the snoresend application, a commandline interface for sendig notifications.") add_subdirectory(plugins) diff --git a/src/plugins/backends/snore/CMakeLists.txt b/src/plugins/backends/snore/CMakeLists.txt index 8052d9d..60d4d91 100644 --- a/src/plugins/backends/snore/CMakeLists.txt +++ b/src/plugins/backends/snore/CMakeLists.txt @@ -1,9 +1,8 @@ find_package(Qt5Quick QUIET) set_package_properties(Qt5Quick PROPERTIES - PURPOSE "Adding buildin notifiaction backend." + PURPOSE "Adding builtin notifiaction backend." TYPE OPTIONAL) - if(Qt5Quick_FOUND) QT5_ADD_RESOURCES(SNORENOTIFIER_RCS ${CMAKE_CURRENT_SOURCE_DIR}/snore_notification.qrc)