-
Notifications
You must be signed in to change notification settings - Fork 0
/
qwclient.pro
45 lines (37 loc) · 832 Bytes
/
qwclient.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
#-------------------------------------------------
#
# Project created by QtCreator 2012-08-16T04:30:39
#
#-------------------------------------------------
QT += network
QT -= gui
TARGET = qwclient
TEMPLATE = lib
DEFINES += QWCLIENT_LIBRARY
SOURCES += QWClient.cpp \
QWClientPrivate.cpp \
QWPack.cpp \
QWTables.cc
HEADERS += QWClient.h\
qwclient_global.h \
QWClientPrivate.h \
quakedef.h \
QWPack.h \
QWTables.h
symbian {
MMP_RULES += EXPORTUNFROZEN
TARGET.UID3 = 0xE3787C8C
TARGET.CAPABILITY =
TARGET.EPOCALLOWDLLDATA = 1
addFiles.sources = qwclient.dll
addFiles.path = !:/sys/bin
DEPLOYMENT += addFiles
}
unix:!symbian {
maemo5 {
target.path = /opt/usr/lib
} else {
target.path = /usr/lib
}
INSTALLS += target
}