blob: f38321f45c8647abff5dd8c85397ac53b68e5309 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
HEADERS = mainwindow.h \
xbeltree.h
SOURCES = main.cpp \
mainwindow.cpp \
xbeltree.cpp
QT += xml
# install
target.path = $$[QT_INSTALL_EXAMPLES]/xml/dombookmarks
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS dombookmarks.pro *.xbel
sources.path = $$[QT_INSTALL_EXAMPLES]/xml/dombookmarks
INSTALLS += target sources
include($$QT_SOURCE_TREE/examples/examplebase.pri)
wince*: {
addFiles.sources = frank.xbel jennifer.xbel
addFiles.path = \My Documents
DEPLOYMENT += addFiles
}
|