From bf81a07d2a01d501d6bfc46806876e0e478adc07 Mon Sep 17 00:00:00 2001 From: Rick Vogel Date: Fri, 28 Oct 2022 13:31:47 +0200 Subject: [PATCH] disable pinyin and hunspell by default --- features/qskconfig.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/features/qskconfig.cmake b/features/qskconfig.cmake index e1181b60..94ac5835 100644 --- a/features/qskconfig.cmake +++ b/features/qskconfig.cmake @@ -50,8 +50,8 @@ set(OBJECTS_DIR obj) set(RCC_DIR rcc) option(BUILD_QSKDLL "build qskinny as shared library" ON) -option(ENABLE_PINYIN "enable romanization system for standard mandarin chinese" ON) -option(ENABLE_HUNSPELL "enable spell checker" ON) +option(ENABLE_PINYIN "enable romanization system for standard mandarin chinese" OFF) # TODO try find pkg-config +option(ENABLE_HUNSPELL "enable spell checker" OFF) # TODO try find pkg-config if(UNIX AND NOT APPLE) set(LINUX TRUE) @@ -77,7 +77,7 @@ if(LINUX) # add the Qt module to our includes and therefore don't # need this path. - # TODO + # TODO find solution for all platforms # QMAKE_CXXFLAGS += \ # -isystem $$[QT_INSTALL_HEADERS]/QtCore \ # -isystem $$[QT_INSTALL_HEADERS]/QtCore/$$[QT_VERSION]/QtCore \