0aa2d318b1
Conflicts: src/corelib/global/qglobal.cpp src/corelib/global/qglobal.h src/corelib/global/qsysinfo.h src/corelib/global/qsystemdetection.h src/corelib/kernel/qobjectdefs.h src/plugins/plugins.pro tests/auto/widgets/itemviews/qlistview/qlistview.pro Change-Id: Ib55aa79d707c4c1453fb9d697f6cf92211ed665c
21 lines
553 B
Prolog
21 lines
553 B
Prolog
TEMPLATE = app
|
|
INCLUDEPATH += .
|
|
|
|
HEADERS = bookdelegate.h bookwindow.h initdb.h
|
|
RESOURCES = books.qrc
|
|
SOURCES = bookdelegate.cpp main.cpp bookwindow.cpp
|
|
FORMS = bookwindow.ui
|
|
|
|
QT += sql widgets widgets
|
|
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/sql/books
|
|
INSTALLS += target
|
|
|
|
|
|
wince {
|
|
CONFIG(debug, debug|release):sqlPlugins.files = $$QT_BUILD_TREE/plugins/sqldrivers/*d4.dll
|
|
CONFIG(release, debug|release):sqlPlugins.files = $$QT_BUILD_TREE/plugins/sqldrivers/*[^d]4.dll
|
|
sqlPlugins.path = sqldrivers
|
|
INSTALLS += sqlPlugins
|
|
}
|