-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQHtsp.pro
76 lines (68 loc) · 1.55 KB
/
QHtsp.pro
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#-------------------------------------------------
#
# Project created by QtCreator 2012-01-30T16:38:58
#
#-------------------------------------------------
QT += network
QT -= gui
TARGET = QHtsp
TEMPLATE = lib
DEFINES += QHTSP_LIBRARY
SOURCES += qhtspconnection.cpp \
qhtspmessage.cpp \
qhtsp.cpp \
qhtspchannel.cpp \
qhtsptag.cpp \
qhtspchannellist.cpp \
qhtsptaglist.cpp \
qhtspchannelmodel.cpp \
qhtsptagmodel.cpp \
qhtspevent.cpp \
qhtspeventlist.cpp \
qhtspeventmodel.cpp \
qhtspepgquery.cpp \
qhtspdvrentry.cpp \
qhtspdvrentrylist.cpp \
qhtspdvrentrymodel.cpp \
qhtspchanneldata.cpp \
qhtspeventdata.cpp \
qhtspepgquerydata.cpp \
qhtsptagdata.cpp \
qhtspdvrentrydata.cpp \
qhtspservice.cpp \
qhtspservicedata.cpp
HEADERS += qhtspconnection.h \
qhtsp_global.h \
qhtspmessage.h \
qhtsp.h \
qhtspchannel.h \
qhtsptag.h \
qhtspchannellist.h \
qhtsptaglist.h \
qhtspchannelmodel.h \
qhtsptagmodel.h \
qhtspevent.h \
qhtspeventlist.h \
qhtspeventmodel.h \
qhtspepgquery.h \
qhtspdvrentry.h \
qhtspdvrentrylist.h \
qhtspdvrentrymodel.h \
qhtspservice.h
symbian {
MMP_RULES += EXPORTUNFROZEN
TARGET.UID3 = 0xE1302CF3
TARGET.CAPABILITY =
TARGET.EPOCALLOWDLLDATA = 1
addFiles.sources = QHtsp.dll
addFiles.path = !:/sys/bin
DEPLOYMENT += addFiles
}
unix:!symbian {
maemo5 {
target.path = /opt/usr/lib
} else {
target.path = /usr/lib
}
INSTALLS += target
}