blob: 2363e5450c41a46d68cf9f9a2be59cc2a4fcd3ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
HEADERS = database.h \
dialog.h \
mainwindow.h
RESOURCES = masterdetail.qrc
SOURCES = dialog.cpp \
main.cpp \
mainwindow.cpp
QT += sql
QT += xml
# install
target.path = $$[QT_INSTALL_EXAMPLES]/sql/masterdetail
sources.files = $$SOURCES *.h $$RESOURCES $$FORMS masterdetail.pro *.xml images
sources.path = $$[QT_INSTALL_EXAMPLES]/sql/masterdetail
INSTALLS += target sources
include($$QT_SOURCE_TREE/examples/examplebase.pri)
|