summaryrefslogtreecommitdiffstats
path: root/messagingframework.pro
diff options
context:
space:
mode:
authorChris Adams <chris.adams@qinetic.com.au>2019-03-12 18:55:18 +1000
committerChristopher Adams <chris.adams@jollamobile.com>2019-03-15 03:36:00 +0000
commit195f2b8224c045a8043340584b354f39b6946906 (patch)
tree705b84ce085f1dc7b0934a79d967c782813a4591 /messagingframework.pro
parentbbd0de450702558918b18558f481e8f1e1cf3879 (diff)
Don't build qmf for WebAssembly or Mac OS X platforms
WebAssembly doesn't support QtSql so must be disabled. The config for Mac OS X 10.13 slaves in CI is currently broken somehow, and while building the main qmf libs succeeds, when building the tests qmake creates calls to run moc_wrapper.sh instead of moc. moc_wrapper.sh doesn't exist in those test directories. Change-Id: If7969cea2d52600c6cae2602a2a1c42e99044f46 Reviewed-by: Matthew Vogt <matthew.vogt@qinetic.com.au>
Diffstat (limited to 'messagingframework.pro')
-rw-r--r--messagingframework.pro4
1 files changed, 4 insertions, 0 deletions
diff --git a/messagingframework.pro b/messagingframework.pro
index fb0c343b..7ba84330 100644
--- a/messagingframework.pro
+++ b/messagingframework.pro
@@ -6,6 +6,10 @@ requires(!qnx)
requires(!android)
requires(!integrity)
requires(!vxworks)
+requires(!wasm)
+requires(!macos)
+
+requires(qtHaveModule(sql))
!contains(DEFINES,QMF_NO_WIDGETS) {
requires(qtHaveModule(widgets))