-
Notifications
You must be signed in to change notification settings - Fork 0
/
libmessy.pro
46 lines (39 loc) · 892 Bytes
/
libmessy.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
#-------------------------------------------------
#
# Project created by QtCreator 2012-05-11T20:32:54
#
#-------------------------------------------------
QT += network xml
TARGET = messy
TEMPLATE = lib
DEFINES += LIBMESSY_LIBRARY
SOURCES += libmessy.cpp \
messy.cpp \
ordershandler.cpp \
orderhandler.cpp \
order.cpp \
orderresponsehandler.cpp
HEADERS += libmessy.h\
libmessy_global.h \
messy.h \
ordershandler.h \
orderhandler.h \
order.h \
orderresponsehandler.h
symbian {
MMP_RULES += EXPORTUNFROZEN
TARGET.UID3 = 0xE752BFEB
TARGET.CAPABILITY =
TARGET.EPOCALLOWDLLDATA = 1
addFiles.sources = libmessy.dll
addFiles.path = !:/sys/bin
DEPLOYMENT += addFiles
}
unix:!symbian {
maemo5 {
target.path = /opt/usr/lib
} else {
target.path = /usr/lib
}
INSTALLS += target
}