21aba79915
Change-Id: I683383e2dab9428ea3fe4cfffba24bb7fefbc7c7 Reviewed-on: http://codereview.qt.nokia.com/618 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: David Boddie
24 lines
711 B
Prolog
24 lines
711 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
|
|
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/sql/books
|
|
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS *.pro images
|
|
sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/sql/books
|
|
INSTALLS += target sources
|
|
|
|
symbian: CONFIG += qt_example
|
|
|
|
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
|
|
}
|