~ubuntu-branches/ubuntu/edgy/psi/edgy

« back to all changes in this revision

Viewing changes to src/psi.pro

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2002-04-19 02:28:44 UTC
  • Revision ID: james.westby@ubuntu.com-20020419022844-za7xgai5qyfd9xv6
Tags: upstream-0.8.5
ImportĀ upstreamĀ versionĀ 0.8.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Psi qmake profile
 
3
#
 
4
 
 
5
# Configuration.  Remove the word 'thread' to build against non-threaded Qt
 
6
CONFIG    += qt thread
 
7
 
 
8
 
 
9
# Executable name
 
10
TARGET    = psi
 
11
 
 
12
# Header files
 
13
HEADERS   =  sslfilter.h \
 
14
        jabstream.h \
 
15
        jabcommon.h \
 
16
        jabio.h \
 
17
        jabtasks.h \
 
18
        jabber.h \
 
19
        profiles.h \
 
20
        main.h \
 
21
        jabsess.h \
 
22
        jabcon.h \
 
23
        userlist.h \
 
24
        mainwin.h \
 
25
        contactview.h \
 
26
        msgmle.h \
 
27
        eventdlg.h \
 
28
        adduserdlg.h \
 
29
        common.h \
 
30
        anim.h \
 
31
        historydlg.h \
 
32
        message.h \
 
33
        logwindow.h \
 
34
        showtextdlg.h \
 
35
        uniquewindow.h \
 
36
        statusdlg.h \
 
37
        optionsdlg.h \
 
38
        chatdlg.h \
 
39
        varlist.h \
 
40
        servicesdlg.h \
 
41
        browsedb.h \
 
42
        busywidget.h \
 
43
        infodlg.h \
 
44
        info.h \
 
45
        searchdlg.h \
 
46
        idle.h \
 
47
        filetrans.h \
 
48
        offermaindlg.h \
 
49
        trayicon.h \
 
50
        profiledlg.h \
 
51
        accountdlg.h
 
52
 
 
53
# Source files
 
54
SOURCES   =  sslfilter.cpp \
 
55
        jabstream.cpp \
 
56
        jabcommon.cpp \
 
57
        jabio.cpp \
 
58
        jabtasks.cpp \
 
59
        jabber.cpp \
 
60
        profiles.cpp \
 
61
        main.cpp \
 
62
        jabsess.cpp \
 
63
        jabcon.cpp \
 
64
        userlist.cpp \
 
65
        mainwin.cpp \
 
66
        contactview.cpp \
 
67
        msgmle.cpp \
 
68
        eventdlg.cpp \
 
69
        adduserdlg.cpp \
 
70
        common.cpp \
 
71
        anim.cpp \
 
72
        historydlg.cpp \
 
73
        message.cpp \
 
74
        logwindow.cpp \
 
75
        showtextdlg.cpp \
 
76
        uniquewindow.cpp \
 
77
        statusdlg.cpp \
 
78
        optionsdlg.cpp \
 
79
        chatdlg.cpp \
 
80
        varlist.cpp \
 
81
        servicesdlg.cpp \
 
82
        browsedb.cpp \
 
83
        busywidget.cpp \
 
84
        infodlg.cpp \
 
85
        info.cpp \
 
86
        searchdlg.cpp \
 
87
        idle.cpp \
 
88
        filetrans.cpp \
 
89
        offermaindlg.cpp \
 
90
        trayicon.cpp \
 
91
        profiledlg.cpp \
 
92
        accountdlg.cpp
 
93
 
 
94
# Qt Designer interfaces
 
95
INTERFACES = ui_options.ui ui_services.ui ui_info.ui ui_search.ui ui_offermain.ui ui_adduser.ui ui_profileopen.ui ui_profilemanage.ui ui_profilenew.ui ui_accountmanage.ui ui_accountmodify.ui
 
96
 
 
97
# Translations
 
98
TRANSLATIONS = psi_jp.ts psi_de.ts psi_zh.ts psi_pl.ts
 
99
 
 
100
 
 
101
# System-specific build settings
 
102
unix:!mac {
 
103
        INCLUDEPATH  += /usr/X11R6/include
 
104
        LIBS         += -lXss
 
105
        SOURCES      += trayicon_x11.cpp
 
106
}
 
107
 
 
108
win32: {
 
109
        LIBS         += win32/idleui.lib
 
110
        SOURCES      += trayicon_win.cpp
 
111
        RC_FILE      = win32/psi_win32.rc
 
112
}
 
113
 
 
114
mac: {
 
115
        SOURCES      += trayicon_mac.cpp
 
116
        QMAKE_LFLAGS += -framework Carbon -lz
 
117
}
 
118