aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJarkko Koivikko <jarkko.koivikko@code-q.fi>2018-08-30 09:34:10 +0300
committerJarkko Koivikko <jarkko.koivikko@code-q.fi>2018-08-30 07:03:43 +0000
commit7d764eecbf69969661003c9f7874fde1e99fcc2a (patch)
tree5c57a1c0e34826c59c8780313445cf9154fb3d23
parentb253a3f14af12588966687d66cfa8829e3b1758f (diff)
Fix build dependency for Thai plugin
Thai plugin may depend on the QtHunspellInputMethod, so add the missing dependency. Change-Id: I966989a9b7fc5d3b250240740048dba40aa6014a Reviewed-by: Andy Shaw <andy.shaw@qt.io>
-rw-r--r--src/plugins/plugins.pro5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/plugins/plugins.pro b/src/plugins/plugins.pro
index ce5a5cc1..b5e8abb5 100644
--- a/src/plugins/plugins.pro
+++ b/src/plugins/plugins.pro
@@ -13,4 +13,7 @@ pinyin: SUBDIRS += pinyin
t9write: SUBDIRS += t9write
tcime: SUBDIRS += tcime
myscript: SUBDIRS += myscript
-thai: SUBDIRS += thai
+thai: {
+ SUBDIRS += thai
+ !disable-hunspell: thai.depends += hunspell
+}