diff options
author | jan Iversen <jani@libreoffice.org> | 2018-05-08 18:18:23 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-05-10 20:43:22 -0700 |
commit | 6019688b98979c04c162b06326f970e24e7e8525 (patch) | |
tree | 002fdf16392a6f45171ee45d1b48965e20435c45 /packaging/ios/Subsurface-mobile/Subsurface-mobile.pro | |
parent | 5aa5398624c8d404abdf3a4023a5a504dd3e4366 (diff) | |
download | subsurface-6019688b98979c04c162b06326f970e24e7e8525.tar.gz |
iOS: removed local build of libxml2
script/build.sh uses the builtin libxml2 and do not build locally,
updated build.sh and Subsurface-mobile.pro to to the same.
sadly enough xslt is not distributed for iOS so it must be built.
Apart from simplifying the script it saves build time
Signed-off-by: Jan Iversen <jani@apache.org>
Diffstat (limited to 'packaging/ios/Subsurface-mobile/Subsurface-mobile.pro')
-rw-r--r-- | packaging/ios/Subsurface-mobile/Subsurface-mobile.pro | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packaging/ios/Subsurface-mobile/Subsurface-mobile.pro b/packaging/ios/Subsurface-mobile/Subsurface-mobile.pro index bfe3bab16..9d129c493 100644 --- a/packaging/ios/Subsurface-mobile/Subsurface-mobile.pro +++ b/packaging/ios/Subsurface-mobile/Subsurface-mobile.pro @@ -109,20 +109,20 @@ LIBS += ../install-root/lib/libdivecomputer.a \ ../install-root/lib/libgit2.a \ ../install-root/lib/libzip.a \ ../install-root/lib/libxslt.a \ - ../install-root/lib/libxml2.a \ ../googlemaps-build/libqtgeoservices_googlemaps.a \ -liconv \ - -lsqlite3 + -lsqlite3 \ + -lxml2 INCLUDEPATH += ../install-root/include/ \ ../install-root/lib/libzip/include \ - ../install-root/include/libxml2 \ ../install-root/include/libxstl \ ../install-root/include/libexstl \ ../install-root/include/openssl \ ../../.. \ ../../../core \ - ../../../mobile-widgets/qml/kirigami/src/libkirigami + ../../../mobile-widgets/qml/kirigami/src/libkirigami \ + /usr/include/libxml2 HEADERS += \ ../../../core/libdivecomputer.h \ |