Introduced the QT.<module>.plugins variable to module profiles.
This commit is contained in:
parent
0cdec327f2
commit
2e1af58417
@ -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_INCLUDE_BASE = $out_basedir/include\n";
|
||||||
print MODULE_PRI_FILE "QT_MODULE_IMPORT_BASE = $qtbasedir/imports\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_LIB_BASE = $qtbasedir/lib\n";
|
||||||
|
print MODULE_PRI_FILE "QT_MODULE_PLUGIN_BASE = $qtbasedir/plugins\n";
|
||||||
print MODULE_PRI_FILE "include($modulepri)\n";
|
print MODULE_PRI_FILE "include($modulepri)\n";
|
||||||
close MODULE_PRI_FILE;
|
close MODULE_PRI_FILE;
|
||||||
utime(time, (stat($modulepri))[9], $moduleprifwd);
|
utime(time, (stat($modulepri))[9], $moduleprifwd);
|
||||||
|
@ -20,6 +20,7 @@ isEmpty(QMAKE_QT_CONFIG)|!exists($$QMAKE_QT_CONFIG) {
|
|||||||
# qt_<module>.pri forwarding file
|
# qt_<module>.pri forwarding file
|
||||||
QT_MODULE_INCLUDE_BASE = $$[QT_INSTALL_HEADERS]
|
QT_MODULE_INCLUDE_BASE = $$[QT_INSTALL_HEADERS]
|
||||||
QT_MODULE_LIB_BASE = $$[QT_INSTALL_LIBS]
|
QT_MODULE_LIB_BASE = $$[QT_INSTALL_LIBS]
|
||||||
|
QT_MODULE_PLUGIN_BASE = $$[QT_INSTALL_PLUGINS]
|
||||||
QT_MODULE_BIN_BASE = $$[QT_INSTALL_BINS]
|
QT_MODULE_BIN_BASE = $$[QT_INSTALL_BINS]
|
||||||
QT_MODULE_IMPORT_BASE = $$[QT_INSTALL_IMPORTS]
|
QT_MODULE_IMPORT_BASE = $$[QT_INSTALL_IMPORTS]
|
||||||
include($$mod)
|
include($$mod)
|
||||||
|
@ -9,6 +9,7 @@ QT.core.includes = $$QT_MODULE_INCLUDE_BASE/QtCore
|
|||||||
QT.core.private_includes = $$QT_MODULE_INCLUDE_BASE/QtCore/private
|
QT.core.private_includes = $$QT_MODULE_INCLUDE_BASE/QtCore/private
|
||||||
QT.core.sources = $$QT_MODULE_BASE/src/corelib
|
QT.core.sources = $$QT_MODULE_BASE/src/corelib
|
||||||
QT.core.libs = $$QT_MODULE_LIB_BASE
|
QT.core.libs = $$QT_MODULE_LIB_BASE
|
||||||
|
QT.core.plugins = $$QT_MODULE_PLUGIN_BASE
|
||||||
QT.core.imports = $$QT_MODULE_IMPORT_BASE
|
QT.core.imports = $$QT_MODULE_IMPORT_BASE
|
||||||
QT.core.depends =
|
QT.core.depends =
|
||||||
QT.core.DEFINES = QT_CORE_LIB
|
QT.core.DEFINES = QT_CORE_LIB
|
||||||
|
@ -9,6 +9,7 @@ QT.dbus.includes = $$QT_MODULE_INCLUDE_BASE/QtDBus
|
|||||||
QT.dbus.private_includes = $$QT_MODULE_INCLUDE_BASE/QtDBus/private
|
QT.dbus.private_includes = $$QT_MODULE_INCLUDE_BASE/QtDBus/private
|
||||||
QT.dbus.sources = $$QT_MODULE_BASE/src/dbus
|
QT.dbus.sources = $$QT_MODULE_BASE/src/dbus
|
||||||
QT.dbus.libs = $$QT_MODULE_LIB_BASE
|
QT.dbus.libs = $$QT_MODULE_LIB_BASE
|
||||||
|
QT.dbus.plugins = $$QT_MODULE_PLUGIN_BASE
|
||||||
QT.dbus.imports = $$QT_MODULE_IMPORT_BASE
|
QT.dbus.imports = $$QT_MODULE_IMPORT_BASE
|
||||||
QT.dbus.depends = core xml
|
QT.dbus.depends = core xml
|
||||||
QT.dbus.CONFIG = dbusadaptors dbusinterfaces
|
QT.dbus.CONFIG = dbusadaptors dbusinterfaces
|
||||||
|
@ -8,5 +8,7 @@ QT.gui.includes = $$QT_MODULE_INCLUDE_BASE/QtGui
|
|||||||
QT.gui.private_includes = $$QT_MODULE_INCLUDE_BASE/QtGui/private
|
QT.gui.private_includes = $$QT_MODULE_INCLUDE_BASE/QtGui/private
|
||||||
QT.gui.sources = $$QT_MODULE_BASE/src/gui
|
QT.gui.sources = $$QT_MODULE_BASE/src/gui
|
||||||
QT.gui.libs = $$QT_MODULE_LIB_BASE
|
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.depends = core network
|
||||||
QT.gui.DEFINES = QT_GUI_LIB
|
QT.gui.DEFINES = QT_GUI_LIB
|
||||||
|
@ -9,6 +9,7 @@ QT.network.includes = $$QT_MODULE_INCLUDE_BASE/QtNetwork
|
|||||||
QT.network.private_includes = $$QT_MODULE_INCLUDE_BASE/QtNetwork/private
|
QT.network.private_includes = $$QT_MODULE_INCLUDE_BASE/QtNetwork/private
|
||||||
QT.network.sources = $$QT_MODULE_BASE/src/network
|
QT.network.sources = $$QT_MODULE_BASE/src/network
|
||||||
QT.network.libs = $$QT_MODULE_LIB_BASE
|
QT.network.libs = $$QT_MODULE_LIB_BASE
|
||||||
|
QT.network.plugins = $$QT_MODULE_PLUGIN_BASE
|
||||||
QT.network.imports = $$QT_MODULE_IMPORT_BASE
|
QT.network.imports = $$QT_MODULE_IMPORT_BASE
|
||||||
QT.network.depends = core
|
QT.network.depends = core
|
||||||
QT.network.DEFINES = QT_NETWORK_LIB
|
QT.network.DEFINES = QT_NETWORK_LIB
|
||||||
|
@ -9,6 +9,7 @@ QT.opengl.includes = $$QT_MODULE_INCLUDE_BASE/QtOpenGL
|
|||||||
QT.opengl.private_includes = $$QT_MODULE_INCLUDE_BASE/QtOpenGL/private
|
QT.opengl.private_includes = $$QT_MODULE_INCLUDE_BASE/QtOpenGL/private
|
||||||
QT.opengl.sources = $$QT_MODULE_BASE/src/opengl
|
QT.opengl.sources = $$QT_MODULE_BASE/src/opengl
|
||||||
QT.opengl.libs = $$QT_MODULE_LIB_BASE
|
QT.opengl.libs = $$QT_MODULE_LIB_BASE
|
||||||
|
QT.opengl.plugins = $$QT_MODULE_PLUGIN_BASE
|
||||||
QT.opengl.imports = $$QT_MODULE_IMPORT_BASE
|
QT.opengl.imports = $$QT_MODULE_IMPORT_BASE
|
||||||
QT.opengl.depends = core gui
|
QT.opengl.depends = core gui
|
||||||
QT.opengl.CONFIG = opengl
|
QT.opengl.CONFIG = opengl
|
||||||
|
@ -9,6 +9,7 @@ QT.openvg.includes = $$QT_MODULE_INCLUDE_BASE/QtOpenVG
|
|||||||
QT.openvg.private_includes = $$QT_MODULE_INCLUDE_BASE/QtOpenVG/private
|
QT.openvg.private_includes = $$QT_MODULE_INCLUDE_BASE/QtOpenVG/private
|
||||||
QT.openvg.sources = $$QT_MODULE_BASE/src/openvg
|
QT.openvg.sources = $$QT_MODULE_BASE/src/openvg
|
||||||
QT.openvg.libs = $$QT_MODULE_LIB_BASE
|
QT.openvg.libs = $$QT_MODULE_LIB_BASE
|
||||||
|
QT.openvg.plugins = $$QT_MODULE_PLUGIN_BASE
|
||||||
QT.openvg.imports = $$QT_MODULE_IMPORT_BASE
|
QT.openvg.imports = $$QT_MODULE_IMPORT_BASE
|
||||||
QT.openvg.depends = core gui
|
QT.openvg.depends = core gui
|
||||||
QT.openvg.CONFIG = openvg
|
QT.openvg.CONFIG = openvg
|
||||||
|
@ -9,6 +9,7 @@ QT.sql.includes = $$QT_MODULE_INCLUDE_BASE/QtSql
|
|||||||
QT.sql.private_includes = $$QT_MODULE_INCLUDE_BASE/QtSql/private
|
QT.sql.private_includes = $$QT_MODULE_INCLUDE_BASE/QtSql/private
|
||||||
QT.sql.sources = $$QT_MODULE_BASE/src/sql
|
QT.sql.sources = $$QT_MODULE_BASE/src/sql
|
||||||
QT.sql.libs = $$QT_MODULE_LIB_BASE
|
QT.sql.libs = $$QT_MODULE_LIB_BASE
|
||||||
|
QT.sql.plugins = $$QT_MODULE_PLUGIN_BASE
|
||||||
QT.sql.imports = $$QT_MODULE_IMPORT_BASE
|
QT.sql.imports = $$QT_MODULE_IMPORT_BASE
|
||||||
QT.sql.depends = core
|
QT.sql.depends = core
|
||||||
QT.sql.DEFINES = QT_SQL_LIB
|
QT.sql.DEFINES = QT_SQL_LIB
|
||||||
|
@ -9,6 +9,7 @@ QT.testlib.includes = $$QT_MODULE_INCLUDE_BASE/QtTest
|
|||||||
QT.testlib.private_includes = $$QT_MODULE_INCLUDE_BASE/QtTest/private
|
QT.testlib.private_includes = $$QT_MODULE_INCLUDE_BASE/QtTest/private
|
||||||
QT.testlib.sources = $$QT_MODULE_BASE/src/testlib
|
QT.testlib.sources = $$QT_MODULE_BASE/src/testlib
|
||||||
QT.testlib.libs = $$QT_MODULE_LIB_BASE
|
QT.testlib.libs = $$QT_MODULE_LIB_BASE
|
||||||
|
QT.testlib.plugins = $$QT_MODULE_PLUGIN_BASE
|
||||||
QT.testlib.imports = $$QT_MODULE_IMPORT_BASE
|
QT.testlib.imports = $$QT_MODULE_IMPORT_BASE
|
||||||
QT.testlib.depends = core
|
QT.testlib.depends = core
|
||||||
QT.testlib.CONFIG = console
|
QT.testlib.CONFIG = console
|
||||||
|
@ -9,5 +9,6 @@ QT.uilib.includes = $$QT_MODULE_INCLUDE_BASE/QtDesigner
|
|||||||
QT.uilib.private_includes = $$QT_MODULE_INCLUDE_BASE/QtDesigner/private
|
QT.uilib.private_includes = $$QT_MODULE_INCLUDE_BASE/QtDesigner/private
|
||||||
QT.uilib.sources = $$QT_MODULE_BASE/tools/uilib
|
QT.uilib.sources = $$QT_MODULE_BASE/tools/uilib
|
||||||
QT.uilib.libs = $$QT_MODULE_LIB_BASE
|
QT.uilib.libs = $$QT_MODULE_LIB_BASE
|
||||||
|
QT.uilib.plugins = $$QT_MODULE_PLUGIN_BASE
|
||||||
QT.uilib.imports = $$QT_MODULE_IMPORT_BASE
|
QT.uilib.imports = $$QT_MODULE_IMPORT_BASE
|
||||||
QT.uilib.depends = xml
|
QT.uilib.depends = xml
|
||||||
|
@ -9,6 +9,7 @@ QT.uitools.includes = $$QT_MODULE_INCLUDE_BASE/QtUiTools
|
|||||||
QT.uitools.private_includes = $$QT_MODULE_INCLUDE_BASE/QtUiTools/private
|
QT.uitools.private_includes = $$QT_MODULE_INCLUDE_BASE/QtUiTools/private
|
||||||
QT.uitools.sources = $$QT_MODULE_BASE/src/uitools
|
QT.uitools.sources = $$QT_MODULE_BASE/src/uitools
|
||||||
QT.uitools.libs = $$QT_MODULE_LIB_BASE
|
QT.uitools.libs = $$QT_MODULE_LIB_BASE
|
||||||
|
QT.uitools.plugins = $$QT_MODULE_PLUGIN_BASE
|
||||||
QT.uitools.imports = $$QT_MODULE_IMPORT_BASE
|
QT.uitools.imports = $$QT_MODULE_IMPORT_BASE
|
||||||
QT.uitools.depends = xml
|
QT.uitools.depends = xml
|
||||||
QT.uitools.DEFINES = QT_UITOOLS_LIB
|
QT.uitools.DEFINES = QT_UITOOLS_LIB
|
||||||
|
@ -9,6 +9,7 @@ QT.xml.includes = $$QT_MODULE_INCLUDE_BASE/QtXml
|
|||||||
QT.xml.private_includes = $$QT_MODULE_INCLUDE_BASE/QtXml/private
|
QT.xml.private_includes = $$QT_MODULE_INCLUDE_BASE/QtXml/private
|
||||||
QT.xml.sources = $$QT_MODULE_BASE/src/xml
|
QT.xml.sources = $$QT_MODULE_BASE/src/xml
|
||||||
QT.xml.libs = $$QT_MODULE_LIB_BASE
|
QT.xml.libs = $$QT_MODULE_LIB_BASE
|
||||||
|
QT.xml.plugins = $$QT_MODULE_PLUGIN_BASE
|
||||||
QT.xml.imports = $$QT_MODULE_IMPORT_BASE
|
QT.xml.imports = $$QT_MODULE_IMPORT_BASE
|
||||||
QT.xml.depends = core
|
QT.xml.depends = core
|
||||||
QT.xml.DEFINES = QT_XML_LIB
|
QT.xml.DEFINES = QT_XML_LIB
|
||||||
|
@ -2,7 +2,7 @@ TARGET = qtaccessiblewidgets
|
|||||||
include(../../qpluginbase.pri)
|
include(../../qpluginbase.pri)
|
||||||
include (../qaccessiblebase.pri)
|
include (../qaccessiblebase.pri)
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/accessible
|
DESTDIR = $$QT.gui.plugins/accessible
|
||||||
|
|
||||||
QTDIR_build:REQUIRES += "contains(QT_CONFIG, accessibility)"
|
QTDIR_build:REQUIRES += "contains(QT_CONFIG, accessibility)"
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ SOURCES += main.cpp \
|
|||||||
qconnmanengine.cpp \
|
qconnmanengine.cpp \
|
||||||
../qnetworksession_impl.cpp
|
../qnetworksession_impl.cpp
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/bearer
|
DESTDIR = $$QT.network.plugins/bearer
|
||||||
target.path += $$[QT_INSTALL_PLUGINS]/bearer
|
target.path += $$[QT_INSTALL_PLUGINS]/bearer
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
|
||||||
|
@ -20,6 +20,6 @@ SOURCES += main.cpp \
|
|||||||
|
|
||||||
OBJECTIVE_SOURCES += qcorewlanengine.mm
|
OBJECTIVE_SOURCES += qcorewlanengine.mm
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/bearer
|
DESTDIR = $$QT.network.plugins/bearer
|
||||||
target.path += $$[QT_INSTALL_PLUGINS]/bearer
|
target.path += $$[QT_INSTALL_PLUGINS]/bearer
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
@ -11,6 +11,6 @@ SOURCES += qgenericengine.cpp \
|
|||||||
../qnetworksession_impl.cpp \
|
../qnetworksession_impl.cpp \
|
||||||
main.cpp
|
main.cpp
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/bearer
|
DESTDIR = $$QT.network.plugins/bearer
|
||||||
target.path += $$[QT_INSTALL_PLUGINS]/bearer
|
target.path += $$[QT_INSTALL_PLUGINS]/bearer
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
@ -28,6 +28,6 @@ SOURCES += main.cpp \
|
|||||||
|
|
||||||
include(../../../3rdparty/libgq.pri)
|
include(../../../3rdparty/libgq.pri)
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/bearer
|
DESTDIR = $$QT.network.plugins/bearer
|
||||||
target.path += $$[QT_INSTALL_PLUGINS]/bearer
|
target.path += $$[QT_INSTALL_PLUGINS]/bearer
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
@ -12,6 +12,6 @@ SOURCES += main.cpp \
|
|||||||
qnativewifiengine.cpp \
|
qnativewifiengine.cpp \
|
||||||
../qnetworksession_impl.cpp
|
../qnetworksession_impl.cpp
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/bearer
|
DESTDIR = $$QT.network.plugins/bearer
|
||||||
target.path += $$[QT_INSTALL_PLUGINS]/bearer
|
target.path += $$[QT_INSTALL_PLUGINS]/bearer
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
@ -15,6 +15,6 @@ SOURCES += main.cpp \
|
|||||||
qnetworkmanagerengine.cpp \
|
qnetworkmanagerengine.cpp \
|
||||||
../qnetworksession_impl.cpp
|
../qnetworksession_impl.cpp
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/bearer
|
DESTDIR = $$QT.network.plugins/bearer
|
||||||
target.path += $$[QT_INSTALL_PLUGINS]/bearer
|
target.path += $$[QT_INSTALL_PLUGINS]/bearer
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
@ -18,6 +18,6 @@ SOURCES += main.cpp \
|
|||||||
qnlaengine.cpp \
|
qnlaengine.cpp \
|
||||||
../qnetworksession_impl.cpp
|
../qnetworksession_impl.cpp
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/bearer
|
DESTDIR = $$QT.network.plugins/bearer
|
||||||
target.path += $$[QT_INSTALL_PLUGINS]/bearer
|
target.path += $$[QT_INSTALL_PLUGINS]/bearer
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
@ -27,6 +27,6 @@ is_using_gnupoc {
|
|||||||
LIBS += -lConnMon
|
LIBS += -lConnMon
|
||||||
}
|
}
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/bearer
|
DESTDIR = $$QT.network.plugins/bearer
|
||||||
target.path += $$[QT_INSTALL_PLUGINS]/bearer
|
target.path += $$[QT_INSTALL_PLUGINS]/bearer
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
@ -2,7 +2,7 @@ TARGET = qcncodecs
|
|||||||
include(../../qpluginbase.pri)
|
include(../../qpluginbase.pri)
|
||||||
|
|
||||||
CONFIG += warn_on
|
CONFIG += warn_on
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/codecs
|
DESTDIR = $$QT.core.plugins/codecs
|
||||||
QT = core
|
QT = core
|
||||||
|
|
||||||
HEADERS = qgb18030codec.h
|
HEADERS = qgb18030codec.h
|
||||||
|
@ -2,7 +2,7 @@ TARGET = qjpcodecs
|
|||||||
include(../../qpluginbase.pri)
|
include(../../qpluginbase.pri)
|
||||||
|
|
||||||
CONFIG += warn_on
|
CONFIG += warn_on
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/codecs
|
DESTDIR = $$QT.core.plugins/codecs
|
||||||
QT = core
|
QT = core
|
||||||
|
|
||||||
HEADERS = qjpunicode.h \
|
HEADERS = qjpunicode.h \
|
||||||
|
@ -2,7 +2,7 @@ TARGET = qkrcodecs
|
|||||||
include(../../qpluginbase.pri)
|
include(../../qpluginbase.pri)
|
||||||
|
|
||||||
CONFIG += warn_on
|
CONFIG += warn_on
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/codecs
|
DESTDIR = $$QT.core.plugins/codecs
|
||||||
QT = core
|
QT = core
|
||||||
|
|
||||||
HEADERS = qeuckrcodec.h \
|
HEADERS = qeuckrcodec.h \
|
||||||
|
@ -2,7 +2,7 @@ TARGET = qtwcodecs
|
|||||||
include(../../qpluginbase.pri)
|
include(../../qpluginbase.pri)
|
||||||
|
|
||||||
CONFIG += warn_on
|
CONFIG += warn_on
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/codecs
|
DESTDIR = $$QT.core.plugins/codecs
|
||||||
QT = core
|
QT = core
|
||||||
|
|
||||||
HEADERS = qbig5codec.h
|
HEADERS = qbig5codec.h
|
||||||
|
@ -5,6 +5,6 @@ HEADERS = $$QT_SOURCE_TREE/src/gui/embedded/qdecorationdefault_qws.h
|
|||||||
SOURCES = main.cpp \
|
SOURCES = main.cpp \
|
||||||
$$QT_SOURCE_TREE/src/gui/embedded/qdecorationdefault_qws.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
|
target.path += $$[QT_INSTALL_PLUGINS]/decorations
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
TARGET = qdecorationstyled
|
TARGET = qdecorationstyled
|
||||||
include(../../qpluginbase.pri)
|
include(../../qpluginbase.pri)
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/decorations
|
DESTDIR = $$QT.gui.plugins/decorations
|
||||||
target.path += $$[QT_INSTALL_PLUGINS]/decorations
|
target.path += $$[QT_INSTALL_PLUGINS]/decorations
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
|
||||||
|
@ -5,6 +5,6 @@ HEADERS = $$QT_SOURCE_TREE/src/gui/embedded/qdecorationwindows_qws.h
|
|||||||
SOURCES = main.cpp \
|
SOURCES = main.cpp \
|
||||||
$$QT_SOURCE_TREE/src/gui/embedded/qdecorationwindows_qws.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
|
target.path += $$[QT_INSTALL_PLUGINS]/decorations
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
TARGET = qlinuxinputplugin
|
TARGET = qlinuxinputplugin
|
||||||
include(../../qpluginbase.pri)
|
include(../../qpluginbase.pri)
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/generic
|
DESTDIR = $$QT.gui.plugins/generic
|
||||||
target.path = $$[QT_INSTALL_PLUGINS]/generic
|
target.path = $$[QT_INSTALL_PLUGINS]/generic
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
TARGET = qlinuxinputplugin
|
TARGET = qlinuxinputplugin
|
||||||
include(../../qpluginbase.pri)
|
include(../../qpluginbase.pri)
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/generic
|
DESTDIR = $$QT.gui.plugins/generic
|
||||||
target.path = $$[QT_INSTALL_PLUGINS]/generic
|
target.path = $$[QT_INSTALL_PLUGINS]/generic
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
TARGET = qahiscreen
|
TARGET = qahiscreen
|
||||||
include(../../qpluginbase.pri)
|
include(../../qpluginbase.pri)
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/gfxdrivers
|
DESTDIR = $$QT.gui.plugins/gfxdrivers
|
||||||
|
|
||||||
target.path = $$[QT_INSTALL_PLUGINS]/gfxdrivers
|
target.path = $$[QT_INSTALL_PLUGINS]/gfxdrivers
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
@ -2,7 +2,7 @@ TARGET = qdirectfbscreen
|
|||||||
include(../../qpluginbase.pri)
|
include(../../qpluginbase.pri)
|
||||||
include($$QT_SOURCE_TREE/src/gui/embedded/directfb.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
|
target.path = $$[QT_INSTALL_PLUGINS]/gfxdrivers
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
@ -4,7 +4,7 @@ include(../../qpluginbase.pri)
|
|||||||
CONFIG += warn_on
|
CONFIG += warn_on
|
||||||
QT += opengl
|
QT += opengl
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/gfxdrivers
|
DESTDIR = $$QT.gui.plugins/gfxdrivers
|
||||||
|
|
||||||
target.path = $$[QT_INSTALL_PLUGINS]/gfxdrivers
|
target.path = $$[QT_INSTALL_PLUGINS]/gfxdrivers
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
TARGET = qscreenlinuxfb
|
TARGET = qscreenlinuxfb
|
||||||
include(../../qpluginbase.pri)
|
include(../../qpluginbase.pri)
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/gfxdrivers
|
DESTDIR = $$QT.gui.plugins/gfxdrivers
|
||||||
|
|
||||||
target.path = $$[QT_INSTALL_PLUGINS]/gfxdrivers
|
target.path = $$[QT_INSTALL_PLUGINS]/gfxdrivers
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
@ -19,7 +19,7 @@ SOURCES = \
|
|||||||
pvreglscreen.cpp \
|
pvreglscreen.cpp \
|
||||||
pvreglwindowsurface.cpp
|
pvreglwindowsurface.cpp
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/gfxdrivers
|
DESTDIR = $$QT.gui.plugins/gfxdrivers
|
||||||
|
|
||||||
target.path = $$[QT_INSTALL_PLUGINS]/gfxdrivers
|
target.path = $$[QT_INSTALL_PLUGINS]/gfxdrivers
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
@ -3,7 +3,7 @@ include(../../qpluginbase.pri)
|
|||||||
|
|
||||||
DEFINES += QT_QWS_QVFB QT_QWS_MOUSE_QVFB QT_QWS_KBD_QVFB
|
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 = \
|
HEADERS = \
|
||||||
$$QT_SOURCE_TREE/src/gui/embedded/qscreenvfb_qws.h \
|
$$QT_SOURCE_TREE/src/gui/embedded/qscreenvfb_qws.h \
|
||||||
|
@ -3,7 +3,7 @@ include(../../qpluginbase.pri)
|
|||||||
|
|
||||||
DEFINES += QT_QWS_TRANSFORMED
|
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
|
HEADERS = $$QT_SOURCE_TREE/src/gui/embedded/qscreentransformed_qws.h
|
||||||
SOURCES = main.cpp \
|
SOURCES = main.cpp \
|
||||||
|
@ -3,7 +3,7 @@ include(../../qpluginbase.pri)
|
|||||||
|
|
||||||
DEFINES += QT_QWS_VNC
|
DEFINES += QT_QWS_VNC
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/gfxdrivers
|
DESTDIR = $$QT.gui.plugins/gfxdrivers
|
||||||
|
|
||||||
HEADERS = \
|
HEADERS = \
|
||||||
qscreenvnc_qws.h \
|
qscreenvnc_qws.h \
|
||||||
|
@ -3,7 +3,7 @@ include(../../qpluginbase.pri)
|
|||||||
|
|
||||||
QT += gui opengl
|
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
|
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
|
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
|
||||||
|
@ -3,7 +3,7 @@ include(../../qpluginbase.pri)
|
|||||||
|
|
||||||
QT += opengl
|
QT += opengl
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/graphicssystems
|
DESTDIR = $$QT.gui.plugins/graphicssystems
|
||||||
|
|
||||||
SOURCES = main.cpp
|
SOURCES = main.cpp
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ include(../../qpluginbase.pri)
|
|||||||
|
|
||||||
QT += openvg
|
QT += openvg
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/graphicssystems
|
DESTDIR = $$QT.gui.plugins/graphicssystems
|
||||||
|
|
||||||
SOURCES = main.cpp qgraphicssystem_vg.cpp
|
SOURCES = main.cpp qgraphicssystem_vg.cpp
|
||||||
HEADERS = qgraphicssystem_vg_p.h
|
HEADERS = qgraphicssystem_vg_p.h
|
||||||
|
@ -3,7 +3,7 @@ include(../../qpluginbase.pri)
|
|||||||
|
|
||||||
QT += openvg
|
QT += openvg
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/graphicssystems
|
DESTDIR = $$QT.gui.plugins/graphicssystems
|
||||||
|
|
||||||
SOURCES = main.cpp shivavggraphicssystem.cpp shivavgwindowsurface.cpp
|
SOURCES = main.cpp shivavggraphicssystem.cpp shivavgwindowsurface.cpp
|
||||||
HEADERS = shivavggraphicssystem.h shivavgwindowsurface.h
|
HEADERS = shivavggraphicssystem.h shivavgwindowsurface.h
|
||||||
|
@ -3,7 +3,7 @@ include(../../qpluginbase.pri)
|
|||||||
|
|
||||||
QT += network
|
QT += network
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/graphicssystems
|
DESTDIR = $$QT.gui.plugins/graphicssystems
|
||||||
symbian:TARGET.UID3 = 0x2002130E
|
symbian:TARGET.UID3 = 0x2002130E
|
||||||
|
|
||||||
SOURCES = main.cpp qgraphicssystem_trace.cpp
|
SOURCES = main.cpp qgraphicssystem_trace.cpp
|
||||||
|
@ -4,7 +4,7 @@ include(../../qpluginbase.pri)
|
|||||||
include(../../../gui/image/qgifhandler.pri)
|
include(../../../gui/image/qgifhandler.pri)
|
||||||
SOURCES += $$PWD/main.cpp
|
SOURCES += $$PWD/main.cpp
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/imageformats
|
DESTDIR = $$QT.gui.plugins/imageformats
|
||||||
target.path += $$[QT_INSTALL_PLUGINS]/imageformats
|
target.path += $$[QT_INSTALL_PLUGINS]/imageformats
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ HEADERS += qicohandler.h
|
|||||||
SOURCES += main.cpp \
|
SOURCES += main.cpp \
|
||||||
qicohandler.cpp
|
qicohandler.cpp
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/imageformats
|
DESTDIR = $$QT.gui.plugins/imageformats
|
||||||
target.path += $$[QT_INSTALL_PLUGINS]/imageformats
|
target.path += $$[QT_INSTALL_PLUGINS]/imageformats
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
|
||||||
|
@ -6,6 +6,6 @@ QTDIR_build:REQUIRES = "!contains(QT_CONFIG, no-jpeg)"
|
|||||||
include(../../../gui/image/qjpeghandler.pri)
|
include(../../../gui/image/qjpeghandler.pri)
|
||||||
SOURCES += main.cpp
|
SOURCES += main.cpp
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/imageformats
|
DESTDIR = $$QT.gui.plugins/imageformats
|
||||||
target.path += $$[QT_INSTALL_PLUGINS]/imageformats
|
target.path += $$[QT_INSTALL_PLUGINS]/imageformats
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
@ -12,6 +12,6 @@ symbian: {
|
|||||||
include(../../../gui/image/qmnghandler.pri)
|
include(../../../gui/image/qmnghandler.pri)
|
||||||
SOURCES += main.cpp
|
SOURCES += main.cpp
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/imageformats
|
DESTDIR = $$QT.gui.plugins/imageformats
|
||||||
target.path += $$[QT_INSTALL_PLUGINS]/imageformats
|
target.path += $$[QT_INSTALL_PLUGINS]/imageformats
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
@ -6,7 +6,7 @@ QTDIR_build:REQUIRES = "!contains(QT_CONFIG, no-tiff)"
|
|||||||
include(../../../gui/image/qtiffhandler.pri)
|
include(../../../gui/image/qtiffhandler.pri)
|
||||||
SOURCES += main.cpp
|
SOURCES += main.cpp
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/imageformats
|
DESTDIR = $$QT.gui.plugins/imageformats
|
||||||
target.path += $$[QT_INSTALL_PLUGINS]/imageformats
|
target.path += $$[QT_INSTALL_PLUGINS]/imageformats
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@ TARGET = qimsw-multi
|
|||||||
include(../../qpluginbase.pri)
|
include(../../qpluginbase.pri)
|
||||||
CONFIG += warn_on
|
CONFIG += warn_on
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/inputmethods
|
DESTDIR = $$QT.gui.plugins/inputmethods
|
||||||
|
|
||||||
HEADERS += qmultiinputcontext.h \
|
HEADERS += qmultiinputcontext.h \
|
||||||
qmultiinputcontextplugin.h
|
qmultiinputcontextplugin.h
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
TARGET = qlinuxinputkbddriver
|
TARGET = qlinuxinputkbddriver
|
||||||
include(../../qpluginbase.pri)
|
include(../../qpluginbase.pri)
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/kbddrivers
|
DESTDIR = $$QT.gui.plugins/kbddrivers
|
||||||
target.path = $$[QT_INSTALL_PLUGINS]/kbddrivers
|
target.path = $$[QT_INSTALL_PLUGINS]/kbddrivers
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
TARGET = qlinuxtpmousedriver
|
TARGET = qlinuxtpmousedriver
|
||||||
include(../../qpluginbase.pri)
|
include(../../qpluginbase.pri)
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/mousedrivers
|
DESTDIR = $$QT.gui.plugins/mousedrivers
|
||||||
target.path = $$[QT_INSTALL_PLUGINS]/mousedrivers
|
target.path = $$[QT_INSTALL_PLUGINS]/mousedrivers
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
TARGET = qpcmousedriver
|
TARGET = qpcmousedriver
|
||||||
include(../../qpluginbase.pri)
|
include(../../qpluginbase.pri)
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/mousedrivers
|
DESTDIR = $$QT.gui.plugins/mousedrivers
|
||||||
target.path = $$[QT_INSTALL_PLUGINS]/mousedrivers
|
target.path = $$[QT_INSTALL_PLUGINS]/mousedrivers
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
TARGET = qtslibmousedriver
|
TARGET = qtslibmousedriver
|
||||||
include(../../qpluginbase.pri)
|
include(../../qpluginbase.pri)
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/mousedrivers
|
DESTDIR = $$QT.gui.plugins/mousedrivers
|
||||||
|
|
||||||
HEADERS = \
|
HEADERS = \
|
||||||
$$QT_SOURCE_TREE/src/gui/embedded/qmousedriverplugin_qws.h \
|
$$QT_SOURCE_TREE/src/gui/embedded/qmousedriverplugin_qws.h \
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
TARGET = qcocoa
|
TARGET = qcocoa
|
||||||
include(../../qpluginbase.pri)
|
include(../../qpluginbase.pri)
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
|
DESTDIR = $$QT.gui.plugins/platforms
|
||||||
|
|
||||||
OBJECTIVE_SOURCES = main.mm \
|
OBJECTIVE_SOURCES = main.mm \
|
||||||
qcocoaintegration.mm \
|
qcocoaintegration.mm \
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
TARGET = qdirectfb
|
TARGET = qdirectfb
|
||||||
include(../../qpluginbase.pri)
|
include(../../qpluginbase.pri)
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
|
DESTDIR = $$QT.gui.plugins/platforms
|
||||||
|
|
||||||
isEmpty(DIRECTFB_LIBS) {
|
isEmpty(DIRECTFB_LIBS) {
|
||||||
DIRECTFB_LIBS = -ldirectfb -lfusion -ldirect -lpthread
|
DIRECTFB_LIBS = -ldirectfb -lfusion -ldirect -lpthread
|
||||||
|
@ -4,7 +4,7 @@ CONFIG += plugin
|
|||||||
|
|
||||||
QT += opengl
|
QT += opengl
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
|
DESTDIR = $$QT.gui.plugins/platforms
|
||||||
|
|
||||||
#DEFINES += QEGL_EXTRA_DEBUG
|
#DEFINES += QEGL_EXTRA_DEBUG
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
TARGET = fb_base
|
TARGET = fb_base
|
||||||
#include(../../qpluginbase.pri)
|
#include(../../qpluginbase.pri)
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/graphicssystems
|
DESTDIR = $$QT.gui.plugins/graphicssystems
|
||||||
|
|
||||||
TEMPLATE = lib
|
TEMPLATE = lib
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
TARGET = qlinuxfbgraphicssystem
|
TARGET = qlinuxfbgraphicssystem
|
||||||
include(../../qpluginbase.pri)
|
include(../../qpluginbase.pri)
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
|
DESTDIR = $$QT.gui.plugins/platforms
|
||||||
|
|
||||||
SOURCES = main.cpp qlinuxfbintegration.cpp
|
SOURCES = main.cpp qlinuxfbintegration.cpp
|
||||||
HEADERS = qlinuxfbintegration.h
|
HEADERS = qlinuxfbintegration.h
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
TARGET = qminimal
|
TARGET = qminimal
|
||||||
include(../../qpluginbase.pri)
|
include(../../qpluginbase.pri)
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
|
DESTDIR = $$QT.gui.plugins/platforms
|
||||||
|
|
||||||
SOURCES = main.cpp \
|
SOURCES = main.cpp \
|
||||||
qminimalintegration.cpp \
|
qminimalintegration.cpp \
|
||||||
|
@ -3,7 +3,7 @@ include(../../qpluginbase.pri)
|
|||||||
|
|
||||||
QT += opengl
|
QT += opengl
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
|
DESTDIR = $$QT.gui.plugins/platforms
|
||||||
|
|
||||||
SOURCES = main.cpp \
|
SOURCES = main.cpp \
|
||||||
qopenkodeintegration.cpp \
|
qopenkodeintegration.cpp \
|
||||||
|
@ -3,7 +3,7 @@ include(../../qpluginbase.pri)
|
|||||||
|
|
||||||
QT += openvg
|
QT += openvg
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/graphicssystems
|
DESTDIR = $$QT.gui.plugins/graphicssystems
|
||||||
|
|
||||||
SOURCES = main.cpp qgraphicssystem_vglite.cpp qwindowsurface_vglite.cpp
|
SOURCES = main.cpp qgraphicssystem_vglite.cpp qwindowsurface_vglite.cpp
|
||||||
HEADERS = qgraphicssystem_vglite.h qwindowsurface_vglite.h
|
HEADERS = qgraphicssystem_vglite.h qwindowsurface_vglite.h
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
TARGET = qvfbintegration
|
TARGET = qvfbintegration
|
||||||
include(../../qpluginbase.pri)
|
include(../../qpluginbase.pri)
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
|
DESTDIR = $$QT.gui.plugins/platforms
|
||||||
|
|
||||||
|
|
||||||
SOURCES = main.cpp qvfbintegration.cpp qvfbwindowsurface.cpp
|
SOURCES = main.cpp qvfbintegration.cpp qvfbwindowsurface.cpp
|
||||||
|
@ -3,7 +3,7 @@ include(../../qpluginbase.pri)
|
|||||||
|
|
||||||
QT += network
|
QT += network
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
|
DESTDIR = $$QT.gui.plugins/platforms
|
||||||
|
|
||||||
SOURCES = main.cpp qvncintegration.cpp
|
SOURCES = main.cpp qvncintegration.cpp
|
||||||
HEADERS = qvncintegration.h
|
HEADERS = qvncintegration.h
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
TARGET = qwayland
|
TARGET = qwayland
|
||||||
include(../../qpluginbase.pri)
|
include(../../qpluginbase.pri)
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
|
DESTDIR = $$QT.gui.plugins/platforms
|
||||||
|
|
||||||
DEFINES += Q_PLATFORM_WAYLAND
|
DEFINES += Q_PLATFORM_WAYLAND
|
||||||
DEFINES += $$QMAKE_DEFINES_WAYLAND
|
DEFINES += $$QMAKE_DEFINES_WAYLAND
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
TARGET = qxlib
|
TARGET = qxlib
|
||||||
|
|
||||||
include(../../qpluginbase.pri)
|
include(../../qpluginbase.pri)
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
|
DESTDIR = $$QT.gui.plugins/platforms
|
||||||
|
|
||||||
SOURCES = \
|
SOURCES = \
|
||||||
main.cpp \
|
main.cpp \
|
||||||
|
@ -4,7 +4,7 @@ include(../qpluginbase.pri)
|
|||||||
|
|
||||||
CONFIG -= plugin
|
CONFIG -= plugin
|
||||||
|
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/s60
|
DESTDIR = $$QT.gui.plugins/s60
|
||||||
|
|
||||||
MMP_RULES += NOEXPORTLIBRARY
|
MMP_RULES += NOEXPORTLIBRARY
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
include(../qpluginbase.pri)
|
include(../qpluginbase.pri)
|
||||||
QT = core sql
|
QT = core sql
|
||||||
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/sqldrivers
|
DESTDIR = $$QT.sql.plugins/sqldrivers
|
||||||
|
|
||||||
target.path += $$[QT_INSTALL_PLUGINS]/sqldrivers
|
target.path += $$[QT_INSTALL_PLUGINS]/sqldrivers
|
||||||
INSTALLS += target
|
INSTALLS += target
|
||||||
|
Loading…
x
Reference in New Issue
Block a user