Skip to content

Commit 2f86f22

Browse files
author
William Kyngesburye
committedOct 30, 2018
update mac bundling for new Qt frameworks
1 parent b00b3f6 commit 2f86f22

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed
 

‎mac/cmake/1qt.cmake.in

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,17 @@ SET (QT_FWVER "5")
1616
# build list of Qt frameworks to bundle
1717

1818
# core list, includes dependencies and used by extra plugins
19-
SET (QTLISTQG QtCore QtGui QtWidgets QtNetwork QtXml QtSvg QtConcurrent QtPrintSupport QtPositioning QtTest QtSql)
20-
SET (PYQTLIST Qt QtCore QtGui QtWidgets QtNetwork QtXml QtSvg QtPrintSupport QtPositioning QtTest QtSql)
19+
SET (QTLISTQG QtCore QtGui QtWidgets QtNetwork QtXml QtSvg QtConcurrent QtPrintSupport QtSerialPort QtPositioning QtTest QtSql QtMacExtras)
20+
SET (PYQTLIST Qt QtCore QtGui QtWidgets QtNetwork QtXml QtSvg QtPrintSupport QtPositioning QtSerialPort QtTest QtSql QtMacExtras)
21+
22+
# QtQuickWidgets appears to be implied direct dep, it needs Quick and Qml,
23+
# whether or not WITH_QUICK specified
24+
SET (QTLISTQG ${QTLISTQG} QtQuickWidgets QtQuick QtQml)
25+
SET (PYQTLIST ${PYQTLIST} QtQuickWidgets QtQuick QtQml)
2126

2227
IF(@WITH_QTWEBKIT@)
23-
SET (QTLISTQG ${QTLISTQG} QtWebKit QtWebKitWidgets QtSensors QtQuick QtQml QtWebChannel QtMultimedia QtMultimediaWidgets QtOpenGL)
24-
SET (PYQTLIST ${PYQTLIST} QtWebKit QtWebKitWidgets QtSensors QtQuick QtQml QtWebChannel QtMultimedia QtMultimediaWidgets QtOpenGL)
28+
SET (QTLISTQG ${QTLISTQG} QtWebKit QtWebKitWidgets QtSensors QtWebChannel QtMultimedia QtMultimediaWidgets QtOpenGL)
29+
SET (PYQTLIST ${PYQTLIST} QtWebKit QtWebKitWidgets QtSensors QtWebChannel QtMultimedia QtMultimediaWidgets QtOpenGL)
2530
ENDIF ()
2631

2732
IF(@WITH_3D@)
@@ -36,8 +41,7 @@ ENDIF ()
3641

3742
# add Qsci.so, if available
3843
IF (@QSCI_FOUND@)
39-
SET (QTLISTQG ${QTLISTQG} QtMacExtras)
40-
SET (PYQTLIST ${PYQTLIST} Qsci QtMacExtras)
44+
SET (PYQTLIST ${PYQTLIST} Qsci)
4145
ENDIF (@QSCI_FOUND@)
4246

4347
MYMESSAGE ("Qt list: ${QTLISTQG}")

0 commit comments

Comments
 (0)
Please sign in to comment.