~ubuntu-branches/ubuntu/karmic/psi/karmic

« back to all changes in this revision

Viewing changes to iris/example/xmpptest/iris.pri

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2008-04-14 18:57:30 UTC
  • mfrom: (2.1.9 hardy)
  • Revision ID: james.westby@ubuntu.com-20080414185730-528re3zp0m2hdlhi
Tags: 0.11-8
* added CONFIG -= link_prl to .pro files and removed dependencies
  which are made unnecessary by this change
* Fix segfault when closing last chat tab with qt4.4
  (This is from upstream svn, rev. 1101) (Closes: Bug#476122)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
IRIS_BASE = ../..
2
 
 
3
 
# include some of cutestuff
4
 
CONFIG += cutestuff
5
 
CS_BASE = ../../../cutestuff
6
 
include(../../cs.pri)
7
 
 
8
 
# libidn
9
 
LIBIDN_BASE = $$IRIS_BASE/libidn
10
 
CONFIG += libidn
11
 
include(../../libidn.pri)
12
 
 
13
 
# qca
14
 
#unix:{
15
 
#       INCLUDEPATH += /usr/local/include
16
 
#       LIBS += -L/usr/local/lib -lqca
17
 
#}
18
 
#win32:{
19
 
#       INCLUDEPATH += c:\local\include
20
 
#       LIBS += c:\local\lib\qca.lib
21
 
#}
22
 
#
23
 
#!exists(qcaprovider.h) {
24
 
#       Q_PREFIX = ../../../qca/src
25
 
#       INCLUDEPATH += $${Q_PREFIX}
26
 
#}
27
 
#HEADERS += $${Q_PREFIX}/qcaprovider.h
28
 
 
29
 
INCLUDEPATH += ../../../qca/src
30
 
HEADERS += ../../../qca/src/qca.h ../../../qca/src/qcaprovider.h
31
 
SOURCES += ../../../qca/src/qca.cpp
32
 
 
33
 
DEFINES += XMPP_TEST
34
 
 
35
 
INCLUDEPATH += $$IRIS_BASE/include $$IRIS_BASE/xmpp-core $$IRIS_BASE/xmpp-im $$IRIS_BASE/jabber
36
 
 
37
 
HEADERS += \
38
 
        $$IRIS_BASE/xmpp-core/hash.h \
39
 
        $$IRIS_BASE/xmpp-core/simplesasl.h \
40
 
        $$IRIS_BASE/xmpp-core/securestream.h \
41
 
        $$IRIS_BASE/xmpp-core/parser.h \
42
 
        $$IRIS_BASE/xmpp-core/xmlprotocol.h \
43
 
        $$IRIS_BASE/xmpp-core/protocol.h \
44
 
        $$IRIS_BASE/xmpp-core/td.h \
45
 
        $$IRIS_BASE/xmpp-im/xmpp_tasks.h \
46
 
        $$IRIS_BASE/xmpp-im/xmpp_xmlcommon.h \
47
 
        $$IRIS_BASE/xmpp-im/xmpp_vcard.h \
48
 
        $$IRIS_BASE/jabber/s5b.h \
49
 
        $$IRIS_BASE/jabber/xmpp_ibb.h \
50
 
        $$IRIS_BASE/jabber/xmpp_jidlink.h \
51
 
        $$IRIS_BASE/jabber/filetransfer.h \
52
 
        $$IRIS_BASE/include/xmpp.h \
53
 
        $$IRIS_BASE/include/im.h
54
 
 
55
 
SOURCES += \
56
 
        $$IRIS_BASE/xmpp-core/connector.cpp \
57
 
        $$IRIS_BASE/xmpp-core/tlshandler.cpp \
58
 
        $$IRIS_BASE/xmpp-core/jid.cpp \
59
 
        $$IRIS_BASE/xmpp-core/hash.cpp \
60
 
        $$IRIS_BASE/xmpp-core/simplesasl.cpp \
61
 
        $$IRIS_BASE/xmpp-core/securestream.cpp \
62
 
        $$IRIS_BASE/xmpp-core/parser.cpp \
63
 
        $$IRIS_BASE/xmpp-core/xmlprotocol.cpp \
64
 
        $$IRIS_BASE/xmpp-core/protocol.cpp \
65
 
        $$IRIS_BASE/xmpp-core/stream.cpp \
66
 
        $$IRIS_BASE/xmpp-im/types.cpp \
67
 
        $$IRIS_BASE/xmpp-im/client.cpp \
68
 
        $$IRIS_BASE/xmpp-im/xmpp_tasks.cpp \
69
 
        $$IRIS_BASE/xmpp-im/xmpp_xmlcommon.cpp \
70
 
        $$IRIS_BASE/xmpp-im/xmpp_vcard.cpp \
71
 
        $$IRIS_BASE/jabber/s5b.cpp \
72
 
        $$IRIS_BASE/jabber/xmpp_ibb.cpp \
73
 
        $$IRIS_BASE/jabber/xmpp_jidlink.cpp \
74
 
        $$IRIS_BASE/jabber/filetransfer.cpp
75