Introduced the QT.<module>.plugins variable to module profiles.

This commit is contained in:
axis 2011-03-22 13:20:53 +01:00
parent 0cdec327f2
commit 2e1af58417
68 changed files with 69 additions and 55 deletions

View File

@ -1013,6 +1013,7 @@ foreach my $lib (@modules_to_sync) {
print MODULE_PRI_FILE "QT_MODULE_INCLUDE_BASE = $out_basedir/include\n";
print MODULE_PRI_FILE "QT_MODULE_IMPORT_BASE = $qtbasedir/imports\n";
print MODULE_PRI_FILE "QT_MODULE_LIB_BASE = $qtbasedir/lib\n";
print MODULE_PRI_FILE "QT_MODULE_PLUGIN_BASE = $qtbasedir/plugins\n";
print MODULE_PRI_FILE "include($modulepri)\n";
close MODULE_PRI_FILE;
utime(time, (stat($modulepri))[9], $moduleprifwd);

View File

@ -20,6 +20,7 @@ isEmpty(QMAKE_QT_CONFIG)|!exists($$QMAKE_QT_CONFIG) {
# qt_<module>.pri forwarding file
QT_MODULE_INCLUDE_BASE = $$[QT_INSTALL_HEADERS]
QT_MODULE_LIB_BASE = $$[QT_INSTALL_LIBS]
QT_MODULE_PLUGIN_BASE = $$[QT_INSTALL_PLUGINS]
QT_MODULE_BIN_BASE = $$[QT_INSTALL_BINS]
QT_MODULE_IMPORT_BASE = $$[QT_INSTALL_IMPORTS]
include($$mod)

View File

@ -9,6 +9,7 @@ QT.core.includes = $$QT_MODULE_INCLUDE_BASE/QtCore
QT.core.private_includes = $$QT_MODULE_INCLUDE_BASE/QtCore/private
QT.core.sources = $$QT_MODULE_BASE/src/corelib
QT.core.libs = $$QT_MODULE_LIB_BASE
QT.core.plugins = $$QT_MODULE_PLUGIN_BASE
QT.core.imports = $$QT_MODULE_IMPORT_BASE
QT.core.depends =
QT.core.DEFINES = QT_CORE_LIB

View File

@ -9,6 +9,7 @@ QT.dbus.includes = $$QT_MODULE_INCLUDE_BASE/QtDBus
QT.dbus.private_includes = $$QT_MODULE_INCLUDE_BASE/QtDBus/private
QT.dbus.sources = $$QT_MODULE_BASE/src/dbus
QT.dbus.libs = $$QT_MODULE_LIB_BASE
QT.dbus.plugins = $$QT_MODULE_PLUGIN_BASE
QT.dbus.imports = $$QT_MODULE_IMPORT_BASE
QT.dbus.depends = core xml
QT.dbus.CONFIG = dbusadaptors dbusinterfaces

View File

@ -8,5 +8,7 @@ QT.gui.includes = $$QT_MODULE_INCLUDE_BASE/QtGui
QT.gui.private_includes = $$QT_MODULE_INCLUDE_BASE/QtGui/private
QT.gui.sources = $$QT_MODULE_BASE/src/gui
QT.gui.libs = $$QT_MODULE_LIB_BASE
QT.gui.plugins = $$QT_MODULE_PLUGIN_BASE
QT.gui.imports = $$QT_MODULE_IMPORT_BASE
QT.gui.depends = core network
QT.gui.DEFINES = QT_GUI_LIB

View File

@ -9,6 +9,7 @@ QT.network.includes = $$QT_MODULE_INCLUDE_BASE/QtNetwork
QT.network.private_includes = $$QT_MODULE_INCLUDE_BASE/QtNetwork/private
QT.network.sources = $$QT_MODULE_BASE/src/network
QT.network.libs = $$QT_MODULE_LIB_BASE
QT.network.plugins = $$QT_MODULE_PLUGIN_BASE
QT.network.imports = $$QT_MODULE_IMPORT_BASE
QT.network.depends = core
QT.network.DEFINES = QT_NETWORK_LIB

View File

@ -9,6 +9,7 @@ QT.opengl.includes = $$QT_MODULE_INCLUDE_BASE/QtOpenGL
QT.opengl.private_includes = $$QT_MODULE_INCLUDE_BASE/QtOpenGL/private
QT.opengl.sources = $$QT_MODULE_BASE/src/opengl
QT.opengl.libs = $$QT_MODULE_LIB_BASE
QT.opengl.plugins = $$QT_MODULE_PLUGIN_BASE
QT.opengl.imports = $$QT_MODULE_IMPORT_BASE
QT.opengl.depends = core gui
QT.opengl.CONFIG = opengl

View File

@ -9,6 +9,7 @@ QT.openvg.includes = $$QT_MODULE_INCLUDE_BASE/QtOpenVG
QT.openvg.private_includes = $$QT_MODULE_INCLUDE_BASE/QtOpenVG/private
QT.openvg.sources = $$QT_MODULE_BASE/src/openvg
QT.openvg.libs = $$QT_MODULE_LIB_BASE
QT.openvg.plugins = $$QT_MODULE_PLUGIN_BASE
QT.openvg.imports = $$QT_MODULE_IMPORT_BASE
QT.openvg.depends = core gui
QT.openvg.CONFIG = openvg

View File

@ -9,6 +9,7 @@ QT.sql.includes = $$QT_MODULE_INCLUDE_BASE/QtSql
QT.sql.private_includes = $$QT_MODULE_INCLUDE_BASE/QtSql/private
QT.sql.sources = $$QT_MODULE_BASE/src/sql
QT.sql.libs = $$QT_MODULE_LIB_BASE
QT.sql.plugins = $$QT_MODULE_PLUGIN_BASE
QT.sql.imports = $$QT_MODULE_IMPORT_BASE
QT.sql.depends = core
QT.sql.DEFINES = QT_SQL_LIB

View File

@ -9,6 +9,7 @@ QT.testlib.includes = $$QT_MODULE_INCLUDE_BASE/QtTest
QT.testlib.private_includes = $$QT_MODULE_INCLUDE_BASE/QtTest/private
QT.testlib.sources = $$QT_MODULE_BASE/src/testlib
QT.testlib.libs = $$QT_MODULE_LIB_BASE
QT.testlib.plugins = $$QT_MODULE_PLUGIN_BASE
QT.testlib.imports = $$QT_MODULE_IMPORT_BASE
QT.testlib.depends = core
QT.testlib.CONFIG = console

View File

@ -9,5 +9,6 @@ QT.uilib.includes = $$QT_MODULE_INCLUDE_BASE/QtDesigner
QT.uilib.private_includes = $$QT_MODULE_INCLUDE_BASE/QtDesigner/private
QT.uilib.sources = $$QT_MODULE_BASE/tools/uilib
QT.uilib.libs = $$QT_MODULE_LIB_BASE
QT.uilib.plugins = $$QT_MODULE_PLUGIN_BASE
QT.uilib.imports = $$QT_MODULE_IMPORT_BASE
QT.uilib.depends = xml

View File

@ -9,6 +9,7 @@ QT.uitools.includes = $$QT_MODULE_INCLUDE_BASE/QtUiTools
QT.uitools.private_includes = $$QT_MODULE_INCLUDE_BASE/QtUiTools/private
QT.uitools.sources = $$QT_MODULE_BASE/src/uitools
QT.uitools.libs = $$QT_MODULE_LIB_BASE
QT.uitools.plugins = $$QT_MODULE_PLUGIN_BASE
QT.uitools.imports = $$QT_MODULE_IMPORT_BASE
QT.uitools.depends = xml
QT.uitools.DEFINES = QT_UITOOLS_LIB

View File

@ -9,6 +9,7 @@ QT.xml.includes = $$QT_MODULE_INCLUDE_BASE/QtXml
QT.xml.private_includes = $$QT_MODULE_INCLUDE_BASE/QtXml/private
QT.xml.sources = $$QT_MODULE_BASE/src/xml
QT.xml.libs = $$QT_MODULE_LIB_BASE
QT.xml.plugins = $$QT_MODULE_PLUGIN_BASE
QT.xml.imports = $$QT_MODULE_IMPORT_BASE
QT.xml.depends = core
QT.xml.DEFINES = QT_XML_LIB

View File

@ -2,7 +2,7 @@ TARGET = qtaccessiblewidgets
include(../../qpluginbase.pri)
include (../qaccessiblebase.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/accessible
DESTDIR = $$QT.gui.plugins/accessible
QTDIR_build:REQUIRES += "contains(QT_CONFIG, accessibility)"

View File

@ -15,7 +15,7 @@ SOURCES += main.cpp \
qconnmanengine.cpp \
../qnetworksession_impl.cpp
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/bearer
DESTDIR = $$QT.network.plugins/bearer
target.path += $$[QT_INSTALL_PLUGINS]/bearer
INSTALLS += target

View File

@ -20,6 +20,6 @@ SOURCES += main.cpp \
OBJECTIVE_SOURCES += qcorewlanengine.mm
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/bearer
DESTDIR = $$QT.network.plugins/bearer
target.path += $$[QT_INSTALL_PLUGINS]/bearer
INSTALLS += target

View File

@ -11,6 +11,6 @@ SOURCES += qgenericengine.cpp \
../qnetworksession_impl.cpp \
main.cpp
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/bearer
DESTDIR = $$QT.network.plugins/bearer
target.path += $$[QT_INSTALL_PLUGINS]/bearer
INSTALLS += target

View File

@ -28,6 +28,6 @@ SOURCES += main.cpp \
include(../../../3rdparty/libgq.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/bearer
DESTDIR = $$QT.network.plugins/bearer
target.path += $$[QT_INSTALL_PLUGINS]/bearer
INSTALLS += target

View File

@ -12,6 +12,6 @@ SOURCES += main.cpp \
qnativewifiengine.cpp \
../qnetworksession_impl.cpp
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/bearer
DESTDIR = $$QT.network.plugins/bearer
target.path += $$[QT_INSTALL_PLUGINS]/bearer
INSTALLS += target

View File

@ -15,6 +15,6 @@ SOURCES += main.cpp \
qnetworkmanagerengine.cpp \
../qnetworksession_impl.cpp
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/bearer
DESTDIR = $$QT.network.plugins/bearer
target.path += $$[QT_INSTALL_PLUGINS]/bearer
INSTALLS += target

View File

@ -18,6 +18,6 @@ SOURCES += main.cpp \
qnlaengine.cpp \
../qnetworksession_impl.cpp
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/bearer
DESTDIR = $$QT.network.plugins/bearer
target.path += $$[QT_INSTALL_PLUGINS]/bearer
INSTALLS += target

View File

@ -27,6 +27,6 @@ is_using_gnupoc {
LIBS += -lConnMon
}
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/bearer
DESTDIR = $$QT.network.plugins/bearer
target.path += $$[QT_INSTALL_PLUGINS]/bearer
INSTALLS += target

View File

@ -2,7 +2,7 @@ TARGET = qcncodecs
include(../../qpluginbase.pri)
CONFIG += warn_on
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/codecs
DESTDIR = $$QT.core.plugins/codecs
QT = core
HEADERS = qgb18030codec.h

View File

@ -2,7 +2,7 @@ TARGET = qjpcodecs
include(../../qpluginbase.pri)
CONFIG += warn_on
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/codecs
DESTDIR = $$QT.core.plugins/codecs
QT = core
HEADERS = qjpunicode.h \

View File

@ -2,7 +2,7 @@ TARGET = qkrcodecs
include(../../qpluginbase.pri)
CONFIG += warn_on
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/codecs
DESTDIR = $$QT.core.plugins/codecs
QT = core
HEADERS = qeuckrcodec.h \

View File

@ -2,7 +2,7 @@ TARGET = qtwcodecs
include(../../qpluginbase.pri)
CONFIG += warn_on
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/codecs
DESTDIR = $$QT.core.plugins/codecs
QT = core
HEADERS = qbig5codec.h

View File

@ -5,6 +5,6 @@ HEADERS = $$QT_SOURCE_TREE/src/gui/embedded/qdecorationdefault_qws.h
SOURCES = main.cpp \
$$QT_SOURCE_TREE/src/gui/embedded/qdecorationdefault_qws.cpp
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/decorations
DESTDIR = $$QT.gui.plugins/decorations
target.path += $$[QT_INSTALL_PLUGINS]/decorations
INSTALLS += target

View File

@ -1,7 +1,7 @@
TARGET = qdecorationstyled
include(../../qpluginbase.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/decorations
DESTDIR = $$QT.gui.plugins/decorations
target.path += $$[QT_INSTALL_PLUGINS]/decorations
INSTALLS += target

View File

@ -5,6 +5,6 @@ HEADERS = $$QT_SOURCE_TREE/src/gui/embedded/qdecorationwindows_qws.h
SOURCES = main.cpp \
$$QT_SOURCE_TREE/src/gui/embedded/qdecorationwindows_qws.cpp
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/decorations
DESTDIR = $$QT.gui.plugins/decorations
target.path += $$[QT_INSTALL_PLUGINS]/decorations
INSTALLS += target

View File

@ -1,7 +1,7 @@
TARGET = qlinuxinputplugin
include(../../qpluginbase.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/generic
DESTDIR = $$QT.gui.plugins/generic
target.path = $$[QT_INSTALL_PLUGINS]/generic
INSTALLS += target

View File

@ -1,7 +1,7 @@
TARGET = qlinuxinputplugin
include(../../qpluginbase.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/generic
DESTDIR = $$QT.gui.plugins/generic
target.path = $$[QT_INSTALL_PLUGINS]/generic
INSTALLS += target

View File

@ -1,7 +1,7 @@
TARGET = qahiscreen
include(../../qpluginbase.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/gfxdrivers
DESTDIR = $$QT.gui.plugins/gfxdrivers
target.path = $$[QT_INSTALL_PLUGINS]/gfxdrivers
INSTALLS += target

View File

@ -2,7 +2,7 @@ TARGET = qdirectfbscreen
include(../../qpluginbase.pri)
include($$QT_SOURCE_TREE/src/gui/embedded/directfb.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/gfxdrivers
DESTDIR = $$QT.gui.plugins/gfxdrivers
target.path = $$[QT_INSTALL_PLUGINS]/gfxdrivers
INSTALLS += target

View File

@ -4,7 +4,7 @@ include(../../qpluginbase.pri)
CONFIG += warn_on
QT += opengl
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/gfxdrivers
DESTDIR = $$QT.gui.plugins/gfxdrivers
target.path = $$[QT_INSTALL_PLUGINS]/gfxdrivers
INSTALLS += target

View File

@ -1,7 +1,7 @@
TARGET = qscreenlinuxfb
include(../../qpluginbase.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/gfxdrivers
DESTDIR = $$QT.gui.plugins/gfxdrivers
target.path = $$[QT_INSTALL_PLUGINS]/gfxdrivers
INSTALLS += target

View File

@ -19,7 +19,7 @@ SOURCES = \
pvreglscreen.cpp \
pvreglwindowsurface.cpp
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/gfxdrivers
DESTDIR = $$QT.gui.plugins/gfxdrivers
target.path = $$[QT_INSTALL_PLUGINS]/gfxdrivers
INSTALLS += target

View File

@ -3,7 +3,7 @@ include(../../qpluginbase.pri)
DEFINES += QT_QWS_QVFB QT_QWS_MOUSE_QVFB QT_QWS_KBD_QVFB
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/gfxdrivers
DESTDIR = $$QT.gui.plugins/gfxdrivers
HEADERS = \
$$QT_SOURCE_TREE/src/gui/embedded/qscreenvfb_qws.h \

View File

@ -3,7 +3,7 @@ include(../../qpluginbase.pri)
DEFINES += QT_QWS_TRANSFORMED
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/gfxdrivers
DESTDIR = $$QT.gui.plugins/gfxdrivers
HEADERS = $$QT_SOURCE_TREE/src/gui/embedded/qscreentransformed_qws.h
SOURCES = main.cpp \

View File

@ -3,7 +3,7 @@ include(../../qpluginbase.pri)
DEFINES += QT_QWS_VNC
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/gfxdrivers
DESTDIR = $$QT.gui.plugins/gfxdrivers
HEADERS = \
qscreenvnc_qws.h \

View File

@ -3,7 +3,7 @@ include(../../qpluginbase.pri)
QT += gui opengl
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/graphicssystems
DESTDIR = $$QT.gui.plugins/graphicssystems
HEADERS = qmeegographicssystem.h qmeegopixmapdata.h qmeegoextensions.h qmeegorasterpixmapdata.h qmeegolivepixmapdata.h
SOURCES = qmeegographicssystem.cpp qmeegographicssystem.h qmeegographicssystemplugin.h qmeegographicssystemplugin.cpp qmeegopixmapdata.h qmeegopixmapdata.cpp qmeegoextensions.h qmeegoextensions.cpp qmeegorasterpixmapdata.h qmeegorasterpixmapdata.cpp qmeegolivepixmapdata.cpp qmeegolivepixmapdata.h dithering.cpp

View File

@ -3,7 +3,7 @@ include(../../qpluginbase.pri)
QT += opengl
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/graphicssystems
DESTDIR = $$QT.gui.plugins/graphicssystems
SOURCES = main.cpp

View File

@ -3,7 +3,7 @@ include(../../qpluginbase.pri)
QT += openvg
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/graphicssystems
DESTDIR = $$QT.gui.plugins/graphicssystems
SOURCES = main.cpp qgraphicssystem_vg.cpp
HEADERS = qgraphicssystem_vg_p.h

View File

@ -3,7 +3,7 @@ include(../../qpluginbase.pri)
QT += openvg
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/graphicssystems
DESTDIR = $$QT.gui.plugins/graphicssystems
SOURCES = main.cpp shivavggraphicssystem.cpp shivavgwindowsurface.cpp
HEADERS = shivavggraphicssystem.h shivavgwindowsurface.h

View File

@ -3,7 +3,7 @@ include(../../qpluginbase.pri)
QT += network
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/graphicssystems
DESTDIR = $$QT.gui.plugins/graphicssystems
symbian:TARGET.UID3 = 0x2002130E
SOURCES = main.cpp qgraphicssystem_trace.cpp

View File

@ -4,7 +4,7 @@ include(../../qpluginbase.pri)
include(../../../gui/image/qgifhandler.pri)
SOURCES += $$PWD/main.cpp
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/imageformats
DESTDIR = $$QT.gui.plugins/imageformats
target.path += $$[QT_INSTALL_PLUGINS]/imageformats
INSTALLS += target

View File

@ -7,7 +7,7 @@ HEADERS += qicohandler.h
SOURCES += main.cpp \
qicohandler.cpp
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/imageformats
DESTDIR = $$QT.gui.plugins/imageformats
target.path += $$[QT_INSTALL_PLUGINS]/imageformats
INSTALLS += target

View File

@ -6,6 +6,6 @@ QTDIR_build:REQUIRES = "!contains(QT_CONFIG, no-jpeg)"
include(../../../gui/image/qjpeghandler.pri)
SOURCES += main.cpp
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/imageformats
DESTDIR = $$QT.gui.plugins/imageformats
target.path += $$[QT_INSTALL_PLUGINS]/imageformats
INSTALLS += target

View File

@ -12,6 +12,6 @@ symbian: {
include(../../../gui/image/qmnghandler.pri)
SOURCES += main.cpp
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/imageformats
DESTDIR = $$QT.gui.plugins/imageformats
target.path += $$[QT_INSTALL_PLUGINS]/imageformats
INSTALLS += target

View File

@ -6,7 +6,7 @@ QTDIR_build:REQUIRES = "!contains(QT_CONFIG, no-tiff)"
include(../../../gui/image/qtiffhandler.pri)
SOURCES += main.cpp
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/imageformats
DESTDIR = $$QT.gui.plugins/imageformats
target.path += $$[QT_INSTALL_PLUGINS]/imageformats
INSTALLS += target

View File

@ -2,7 +2,7 @@ TARGET = qimsw-multi
include(../../qpluginbase.pri)
CONFIG += warn_on
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/inputmethods
DESTDIR = $$QT.gui.plugins/inputmethods
HEADERS += qmultiinputcontext.h \
qmultiinputcontextplugin.h

View File

@ -1,7 +1,7 @@
TARGET = qlinuxinputkbddriver
include(../../qpluginbase.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/kbddrivers
DESTDIR = $$QT.gui.plugins/kbddrivers
target.path = $$[QT_INSTALL_PLUGINS]/kbddrivers
INSTALLS += target

View File

@ -1,7 +1,7 @@
TARGET = qlinuxtpmousedriver
include(../../qpluginbase.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/mousedrivers
DESTDIR = $$QT.gui.plugins/mousedrivers
target.path = $$[QT_INSTALL_PLUGINS]/mousedrivers
INSTALLS += target

View File

@ -1,7 +1,7 @@
TARGET = qpcmousedriver
include(../../qpluginbase.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/mousedrivers
DESTDIR = $$QT.gui.plugins/mousedrivers
target.path = $$[QT_INSTALL_PLUGINS]/mousedrivers
INSTALLS += target

View File

@ -1,7 +1,7 @@
TARGET = qtslibmousedriver
include(../../qpluginbase.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/mousedrivers
DESTDIR = $$QT.gui.plugins/mousedrivers
HEADERS = \
$$QT_SOURCE_TREE/src/gui/embedded/qmousedriverplugin_qws.h \

View File

@ -1,6 +1,6 @@
TARGET = qcocoa
include(../../qpluginbase.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
DESTDIR = $$QT.gui.plugins/platforms
OBJECTIVE_SOURCES = main.mm \
qcocoaintegration.mm \

View File

@ -1,6 +1,6 @@
TARGET = qdirectfb
include(../../qpluginbase.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
DESTDIR = $$QT.gui.plugins/platforms
isEmpty(DIRECTFB_LIBS) {
DIRECTFB_LIBS = -ldirectfb -lfusion -ldirect -lpthread

View File

@ -4,7 +4,7 @@ CONFIG += plugin
QT += opengl
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
DESTDIR = $$QT.gui.plugins/platforms
#DEFINES += QEGL_EXTRA_DEBUG

View File

@ -8,7 +8,7 @@
TARGET = fb_base
#include(../../qpluginbase.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/graphicssystems
DESTDIR = $$QT.gui.plugins/graphicssystems
TEMPLATE = lib

View File

@ -1,7 +1,7 @@
TARGET = qlinuxfbgraphicssystem
include(../../qpluginbase.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
DESTDIR = $$QT.gui.plugins/platforms
SOURCES = main.cpp qlinuxfbintegration.cpp
HEADERS = qlinuxfbintegration.h

View File

@ -1,7 +1,7 @@
TARGET = qminimal
include(../../qpluginbase.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
DESTDIR = $$QT.gui.plugins/platforms
SOURCES = main.cpp \
qminimalintegration.cpp \

View File

@ -3,7 +3,7 @@ include(../../qpluginbase.pri)
QT += opengl
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
DESTDIR = $$QT.gui.plugins/platforms
SOURCES = main.cpp \
qopenkodeintegration.cpp \

View File

@ -3,7 +3,7 @@ include(../../qpluginbase.pri)
QT += openvg
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/graphicssystems
DESTDIR = $$QT.gui.plugins/graphicssystems
SOURCES = main.cpp qgraphicssystem_vglite.cpp qwindowsurface_vglite.cpp
HEADERS = qgraphicssystem_vglite.h qwindowsurface_vglite.h

View File

@ -1,7 +1,7 @@
TARGET = qvfbintegration
include(../../qpluginbase.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
DESTDIR = $$QT.gui.plugins/platforms
SOURCES = main.cpp qvfbintegration.cpp qvfbwindowsurface.cpp

View File

@ -3,7 +3,7 @@ include(../../qpluginbase.pri)
QT += network
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
DESTDIR = $$QT.gui.plugins/platforms
SOURCES = main.cpp qvncintegration.cpp
HEADERS = qvncintegration.h

View File

@ -1,7 +1,7 @@
TARGET = qwayland
include(../../qpluginbase.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
DESTDIR = $$QT.gui.plugins/platforms
DEFINES += Q_PLATFORM_WAYLAND
DEFINES += $$QMAKE_DEFINES_WAYLAND

View File

@ -1,7 +1,7 @@
TARGET = qxlib
include(../../qpluginbase.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
DESTDIR = $$QT.gui.plugins/platforms
SOURCES = \
main.cpp \

View File

@ -4,7 +4,7 @@ include(../qpluginbase.pri)
CONFIG -= plugin
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/s60
DESTDIR = $$QT.gui.plugins/s60
MMP_RULES += NOEXPORTLIBRARY

View File

@ -1,6 +1,6 @@
include(../qpluginbase.pri)
QT = core sql
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/sqldrivers
DESTDIR = $$QT.sql.plugins/sqldrivers
target.path += $$[QT_INSTALL_PLUGINS]/sqldrivers
INSTALLS += target