blob: 4cd8b8b068f20f07de8a84251ba694184de83c07 (
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
33
34
35
36
37
38
39
40
41
42
43
|
TARGET = QtSvg
QPRO_PWD = $$PWD
QT = core gui
DEFINES += QT_BUILD_SVG_LIB
DEFINES += QT_NO_USING_NAMESPACE
win32-msvc*|win32-icc:QMAKE_LFLAGS += /BASE:0x66000000
solaris-cc*:QMAKE_CXXFLAGS_RELEASE -= -O2
unix:QMAKE_PKGCONFIG_REQUIRES = QtCore QtGui
include(../qbase.pri)
HEADERS += \
qsvggraphics_p.h \
qsvghandler_p.h \
qsvgnode_p.h \
qsvgstructure_p.h \
qsvgstyle_p.h \
qsvgfont_p.h \
qsvgtinydocument_p.h \
qsvgrenderer.h \
qsvgwidget.h \
qgraphicssvgitem.h \
qsvggenerator.h
SOURCES += \
qsvggraphics.cpp \
qsvghandler.cpp \
qsvgnode.cpp \
qsvgstructure.cpp \
qsvgstyle.cpp \
qsvgfont.cpp \
qsvgtinydocument.cpp \
qsvgrenderer.cpp \
qsvgwidget.cpp \
qgraphicssvgitem.cpp \
qsvggenerator.cpp
symbian:TARGET.UID3=0x2001B2E2
include(../3rdparty/zlib_dependency.pri)
|