d32f47b703
Fix style issues along the way. Change-Id: Ic6a6de28e198eb0b14c198b802e78845703909b9 Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
21 lines
555 B
Prolog
21 lines
555 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
|
|
DEPLOYMENT += sqlPlugins
|
|
}
|