]> Some of my projects - localmylist.git/commitdiff
Fix typo and unnecessary find package
authorAPTX <marek321@gmail.com>
Sun, 21 Jul 2019 16:19:59 +0000 (01:19 +0900)
committerAPTX <marek321@gmail.com>
Sun, 21 Jul 2019 16:19:59 +0000 (01:19 +0900)
CMakeLists.txt
localmylist/CMakeLists.txt

index a0202b2749aa5fc244bb1c360736a38c1751bd33..22e47ee645b332daacc5644d3cb4964e4017f1c4 100644 (file)
@@ -12,7 +12,7 @@ option(WITH_GUI "Build LocalMyList management gui" ON)
 add_feature_info(Gui WITH_GUI "the main UI to manage LocalMyList")
 
 option(WITH_TOOLS "Build LocalMyList tools" ON)
-add_feature_info(Tools WITH_GUI "miscellanious tools to perform various management operations from the command line")
+add_feature_info(Tools WITH_TOOLS "miscellanious tools to perform various management operations from the command line")
 
 option(WITH_RUNSCRIPT "Build LocalMyList runscript" ON)
 add_feature_info(Runscript WITH_RUNSCRIPT "tool to run custom JavaScript scripts with full access to the LocalMyList API")
index 48ee93735cd613dd699eeb223e382d7505496d99..9f62d994ba508867403ced2cc9b7153bd5c11db1 100644 (file)
@@ -6,7 +6,6 @@ set(LocalMyList_VERSION "0.4.0")
 
 find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS
     Core
-    Widgets
     Sql
     Script
 )