~ubuntu-branches/ubuntu/utopic/psi/utopic

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2009-09-25 17:49:51 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090925174951-lvm7kdap82o8xhn3
Tags: 0.13-1
* Updated to upstream version 0.13
* Set Standards-Version to 3.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
TEMPLATE = app
2
 
CONFIG += thread 
3
 
CONFIG -= app_bundle
4
 
TARGET  = xmpptest
5
 
QT += xml network qt3support                                                   
6
 
DEFINES += QT_STATICPLUGIN
7
 
 
8
 
MOC_DIR        = .moc
9
 
OBJECTS_DIR    = .obj
10
 
UI_DIR         = .ui
11
 
 
12
 
#DEFINES += CS_XMPP
13
 
#DEFINES += XMPP_DEBUG
14
 
 
15
 
# Dependencies
16
 
include(../../../conf.pri)
17
 
windows:include(../../../conf_windows.pri)
18
 
 
19
 
include(../../../src/tools/zip/zip.pri)
20
 
windows:LIBS += -lws2_32
21
 
 
22
 
!qca-static {
23
 
        CONFIG += crypto        
24
 
}
25
 
qca-static {
26
 
        # QCA
27
 
        DEFINES += QCA_STATIC
28
 
        include(../../../third-party/qca/qca.pri)
29
 
 
30
 
        # QCA-OpenSSL
31
 
        contains(DEFINES, HAVE_OPENSSL) {
32
 
                include(../../../third-party/qca/qca-openssl.pri)
33
 
        }
34
 
}
35
 
 
36
 
include(../../../cutestuff/cutestuff.pri)
37
 
include(../../iris.pri)
38
 
irisnet {
39
 
        include(../../irisnet/irisnet.pri)
40
 
}
41
 
 
42
 
SOURCES += xmpptest.cpp
43
 
INTERFACES += ui_test.ui
44