summaryrefslogtreecommitdiffstats
path: root/examples/xml/saxbookmarks/saxbookmarks.pro
blob: bb1e0961e7c44a1774aeb0db961bf5d340e793e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
HEADERS       = mainwindow.h \
                xbelgenerator.h \
                xbelhandler.h
SOURCES       = main.cpp \
                mainwindow.cpp \
                xbelgenerator.cpp \
                xbelhandler.cpp
QT           += xml

# install
target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/xml/saxbookmarks
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS saxbookmarks.pro *.xbel
sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/xml/saxbookmarks
INSTALLS += target sources

wince*: {
     addFiles.files = frank.xbel jennifer.xbel
     addFiles.path = "\\My Documents"
     DEPLOYMENT += addFiles
}

symbian: {
     TARGET.UID3 = 0xA000C60A
     CONFIG += qt_example
     addFiles.files = frank.xbel jennifer.xbel
     addFiles.path = /data/qt/saxbookmarks
     DEPLOYMENT += addFiles
}