Skip to content

Commit 48acd19

Browse files
committed
add wasm support
1 parent 911d6b9 commit 48acd19

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ matrix:
2323
- BUILD_DOC=true
2424
- BUILD_EXAMPLES=true
2525
- EXTRA_PKG="libsystemd-dev" #in order to build the systemd plugin
26+
- os: linux
27+
env:
28+
- PLATFORM=emscripten
2629
- os: linux
2730
env:
2831
- PLATFORM=android_arm64_v8a

src/plugins/servicebackends/servicebackends.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
TEMPLATE = subdirs
22

33
SUBDIRS += standard
4-
unix:!android:!ios:system(pkg-config --exists libsystemd): SUBDIRS += systemd
4+
unix:!android:!ios:packagesExist(libsystemd): SUBDIRS += systemd
55
android: SUBDIRS += android
66
win32:!winrt: SUBDIRS += windows
77
macx: SUBDIRS += launchd

src/service/servicecontrol.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
#include <QtCore/qscopedpointer.h>
66
#include <QtCore/qdir.h>
77
#include <QtCore/qvariant.h>
8-
#include <QtCore/qexception.h>
98

109
#include "QtService/qtservice_global.h"
1110

tests/auto/service/service.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ SUBDIRS += \
66
TestStandardService \
77
TestTerminalService
88

9-
unix:!android:!ios:system(pkg-config --exists libsystemd && systemctl --version): SUBDIRS += TestSystemdService
9+
unix:!android:!ios:packagesExist(libsystemd):system(systemctl --version): SUBDIRS += TestSystemdService
1010
win32: SUBDIRS += TestWindowsService
1111
macx: SUBDIRS += TestLaunchdService
1212

0 commit comments

Comments
 (0)