From 55e1850b7c532868df2b5c390bb30978a93c2c37 Mon Sep 17 00:00:00 2001 From: Craig Watson Date: Thu, 5 Nov 2015 10:09:17 +0100 Subject: [PATCH] replaced trolltech QtSingleApplication by Qt5-compatible equivalent --- OpenBoard.pro | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/OpenBoard.pro b/OpenBoard.pro index 8f56b56b..2336fe96 100644 --- a/OpenBoard.pro +++ b/OpenBoard.pro @@ -28,10 +28,13 @@ VERSION_RC = $$replace(VERSION_RC, "r", "240") # 0xF0 QT += webkit QT += svg QT += network -QT += phonon +#QT += phonon QT += xml QT += script QT += xmlpatterns +QT += uitools +QT += multimedia +QT += webkitwidgets INCLUDEPATH += src @@ -59,9 +62,9 @@ include(src/pdf-merger/pdfMerger.pri) DEPENDPATH += $$THIRD_PARTY_PATH/quazip/ INCLUDEPATH += $$THIRD_PARTY_PATH/quazip/ include($$THIRD_PARTY_PATH/quazip/quazip.pri) -DEPENDPATH += $$THIRD_PARTY_PATH/trolltech/singleapplication -INCLUDEPATH += $$THIRD_PARTY_PATH/trolltech/singleapplication -include($$THIRD_PARTY_PATH/trolltech/singleapplication/qtsingleapplication.pri) +DEPENDPATH += $$THIRD_PARTY_PATH/qt/singleapplication +INCLUDEPATH += $$THIRD_PARTY_PATH/qt/singleapplication +include($$THIRD_PARTY_PATH/qt/singleapplication/qtsingleapplication.pri) FORMS += resources/forms/mainWindow.ui \ resources/forms/preferences.ui \