Last change
on this file was 56, checked in by dmik, 19 years ago |
Psi: General: All output directories are made OS-specific (by adding the OS name to the path), to make it possible to build Psi for different platforms from a single source tree.
|
File size:
569 bytes
|
Line | |
---|
1 | TEMPLATE = app
|
---|
2 | CONFIG += thread
|
---|
3 | TARGET = xmpptest
|
---|
4 |
|
---|
5 | OS = unknown
|
---|
6 | os2:OS = os2
|
---|
7 | win32:OS = win
|
---|
8 | unix:OS = nix
|
---|
9 | mac:OS = mac
|
---|
10 |
|
---|
11 | debug: {
|
---|
12 | MOC_DIR = .debug/.$$OS/.moc
|
---|
13 | OBJECTS_DIR = .debug/.$$OS/.obj
|
---|
14 | UI_DIR = .debug/.$$OS/.ui
|
---|
15 | } else {
|
---|
16 | MOC_DIR = .$$OS/.moc
|
---|
17 | OBJECTS_DIR = .$$OS/.obj
|
---|
18 | UI_DIR = .$$OS/.ui
|
---|
19 | }
|
---|
20 |
|
---|
21 | #DEFINES += CS_XMPP
|
---|
22 |
|
---|
23 | #INCLUDEPATH += /usr/local/include ../../../qca/src
|
---|
24 |
|
---|
25 | include(iris.pri)
|
---|
26 |
|
---|
27 | SOURCES += xmpptest.cpp
|
---|
28 | INTERFACES += ui_test.ui
|
---|
29 |
|
---|
30 | # iris
|
---|
31 | #LIBS += -L/usr/local/lib -liris
|
---|
32 |
|
---|
33 | # stupid gentoo cyrus sasl hack
|
---|
34 | #LIBS += -lcrypto
|
---|
Note:
See
TracBrowser
for help on using the repository browser.