diff options
author | Lars Knoll <lars.knoll@nokia.com> | 2011-08-16 16:38:56 +0200 |
---|---|---|
committer | Lars Knoll <lars.knoll@nokia.com> | 2011-08-19 09:16:42 +0200 |
commit | f4f1b53b9646288d73979f8339a90fbbbcb9eedc (patch) | |
tree | cc5a5a8767e469a2d1da20f9817c92a159e31ec0 /sync.profile | |
parent | a1016213d02c2f562fcf7a22a8fcfb2bd45cd674 (diff) | |
download | qtbase-f4f1b53b9646288d73979f8339a90fbbbcb9eedc.tar.gz |
Move printing into it's own library
Create a libQtPrintSupport library that contains our current
printing infrastructure. Long term this will get replaced
with a libQtPrint, as the current architecture is not
really maintainable.
Change-Id: I7362fff6786b58c5b4e9213c23eda36d15048aa2
Reviewed-on: http://codereview.qt.nokia.com/3209
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Gunnar Sletta <gunnar.sletta@nokia.com>
Diffstat (limited to 'sync.profile')
-rw-r--r-- | sync.profile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sync.profile b/sync.profile index 6d88cedc35..c830612cd3 100644 --- a/sync.profile +++ b/sync.profile @@ -1,6 +1,7 @@ %modules = ( # path to module name map "QtGui" => "$basedir/src/gui", "QtWidgets" => "$basedir/src/widgets", + "QtPrintSupport" => "$basedir/src/printsupport", "QtOpenGL" => "$basedir/src/opengl", "QtCore" => "$basedir/src/corelib", "QtXml" => "$basedir/src/xml", @@ -42,6 +43,7 @@ %mastercontent = ( "core" => "#include <QtCore/QtCore>\n", "gui" => "#include <QtGui/QtGui>\n", + "printsupport" => "#include <QtPrintSupport/QtPrintSupport>\n", "widgets" => "#include <QtWidgets/QtWidgets>\n", "network" => "#include <QtNetwork/QtNetwork>\n", "opengl" => "#include <QtOpenGL/QtOpenGL>\n", @@ -53,6 +55,7 @@ "QtCore" => "$basedir/src/modules/qt_core.pri", "QtDBus" => "$basedir/src/modules/qt_dbus.pri", "QtGui" => "$basedir/src/modules/qt_gui.pri", + "QtPrintSupport" => "$basedir/src/modules/qt_printsupport.pri", "QtWidgets" => "$basedir/src/modules/qt_widgets.pri", "QtNetwork" => "$basedir/src/modules/qt_network.pri", "QtOpenGL" => "$basedir/src/modules/qt_opengl.pri", |