author | ar <ar> | 2004-04-29 22:09:08 (UTC) |
---|---|---|
committer | ar <ar> | 2004-04-29 22:09:08 (UTC) |
commit | 69b13812eb3ff3166a589e5871e4c4a74aa91a1a (patch) (unidiff) | |
tree | 3e4571fdb684e5a1465e45c16333429eb0e70424 | |
parent | 5b6aa8b395e23822a0525fba5431747477e57ae9 (diff) | |
download | opie-69b13812eb3ff3166a589e5871e4c4a74aa91a1a.zip opie-69b13812eb3ff3166a589e5871e4c4a74aa91a1a.tar.gz opie-69b13812eb3ff3166a589e5871e4c4a74aa91a1a.tar.bz2 |
- add libetpan lib and include dir from dependencies
-rw-r--r-- | noncore/net/mail/libmailwrapper/libmailwrapper.pro | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/noncore/net/mail/libmailwrapper/libmailwrapper.pro b/noncore/net/mail/libmailwrapper/libmailwrapper.pro index 6ab0bf8..5e44064 100644 --- a/noncore/net/mail/libmailwrapper/libmailwrapper.pro +++ b/noncore/net/mail/libmailwrapper/libmailwrapper.pro | |||
@@ -1,51 +1,58 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on | 2 | CONFIG += qt warn_on |
3 | 3 | ||
4 | HEADERS = mailwrapper.h \ | 4 | HEADERS = mailwrapper.h \ |
5 | imapwrapper.h \ | 5 | imapwrapper.h \ |
6 | mailtypes.h \ | 6 | mailtypes.h \ |
7 | pop3wrapper.h \ | 7 | pop3wrapper.h \ |
8 | abstractmail.h \ | 8 | abstractmail.h \ |
9 | smtpwrapper.h \ | 9 | smtpwrapper.h \ |
10 | genericwrapper.h \ | 10 | genericwrapper.h \ |
11 | mboxwrapper.h \ | 11 | mboxwrapper.h \ |
12 | settings.h \ | 12 | settings.h \ |
13 | logindialog.h \ | 13 | logindialog.h \ |
14 | sendmailprogress.h \ | 14 | sendmailprogress.h \ |
15 | statusmail.h \ | 15 | statusmail.h \ |
16 | mhwrapper.h \ | 16 | mhwrapper.h \ |
17 | nntpwrapper.h \ | 17 | nntpwrapper.h \ |
18 | generatemail.h \ | 18 | generatemail.h \ |
19 | storemail.h | 19 | storemail.h |
20 | 20 | ||
21 | SOURCES = imapwrapper.cpp \ | 21 | SOURCES = imapwrapper.cpp \ |
22 | mailwrapper.cpp \ | 22 | mailwrapper.cpp \ |
23 | mailtypes.cpp \ | 23 | mailtypes.cpp \ |
24 | pop3wrapper.cpp \ | 24 | pop3wrapper.cpp \ |
25 | abstractmail.cpp \ | 25 | abstractmail.cpp \ |
26 | smtpwrapper.cpp \ | 26 | smtpwrapper.cpp \ |
27 | genericwrapper.cpp \ | 27 | genericwrapper.cpp \ |
28 | mboxwrapper.cpp \ | 28 | mboxwrapper.cpp \ |
29 | settings.cpp \ | 29 | settings.cpp \ |
30 | logindialog.cpp \ | 30 | logindialog.cpp \ |
31 | sendmailprogress.cpp \ | 31 | sendmailprogress.cpp \ |
32 | statusmail.cpp \ | 32 | statusmail.cpp \ |
33 | mhwrapper.cpp \ | 33 | mhwrapper.cpp \ |
34 | nntpwrapper.cpp \ | 34 | nntpwrapper.cpp \ |
35 | generatemail.cpp \ | 35 | generatemail.cpp \ |
36 | storemail.cpp | 36 | storemail.cpp |
37 | 37 | ||
38 | INTERFACES = logindialogui.ui \ | 38 | INTERFACES = logindialogui.ui \ |
39 | sendmailprogressui.ui | 39 | sendmailprogressui.ui |
40 | 40 | ||
41 | INCLUDEPATH += $(OPIEDIR)/include | 41 | INCLUDEPATH += $(OPIEDIR)/include |
42 | LIBS += -lqpe -letpan -lssl -lcrypto | 42 | LIBS += -lqpe -letpan -lssl -lcrypto |
43 | 43 | ||
44 | contains( $(CONFIG_TARGET_MACOSX), y ){ | 44 | contains( $(CONFIG_TARGET_MACOSX), y ){ |
45 | LIBS += -liconv | 45 | LIBS += -liconv |
46 | } | 46 | } |
47 | 47 | ||
48 | DESTDIR = $(OPIEDIR)/lib | 48 | DESTDIR = $(OPIEDIR)/lib |
49 | TARGET = mailwrapper | 49 | TARGET = mailwrapper |
50 | 50 | ||
51 | include ( $(OPIEDIR)/include.pro ) | 51 | include ( $(OPIEDIR)/include.pro ) |
52 | |||
53 | !isEmpty( LIBETPAN_INC_DIR ) { | ||
54 | INCLUDEPATH += $$LIBETPAN_INC_DIR | ||
55 | } | ||
56 | !isEmpty( LIBETPAN_LIB_DIR ) { | ||
57 | LIBS += -L$$LIBETPAN_LIB_DIR | ||
58 | } | ||