summaryrefslogtreecommitdiffstats
path: root/examples/painting/svgviewer/svgviewer.pro
blob: 523dcf68a7c561e465291d6ca9dec3cdaee4278e (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
29
30
31
32
HEADERS       = mainwindow.h \
                svgview.h
RESOURCES     = svgviewer.qrc
SOURCES       = main.cpp \
                mainwindow.cpp \
                svgview.cpp
QT           += svg xml

contains(QT_CONFIG, opengl): QT += opengl

CONFIG += console

# install
target.path = $$[QT_INSTALL_EXAMPLES]/painting/svgviewer
sources.files = $$SOURCES $$HEADERS $$RESOURCES svgviewer.pro files
sources.path = $$[QT_INSTALL_EXAMPLES]/painting/svgviewer
INSTALLS += target sources

include($$QT_SOURCE_TREE/examples/examplebase.pri)

wince*: {
     addFiles.sources = files\*.svg
     addFiles.path = \My Documents
     DEPLOYMENT += addFiles
}

symbian: {
     TARGET.UID3 = 0xA000A64E
     addFiles.sources = files\*.svg
     addFiles.path = .
     DEPLOYMENT += addFiles     
}