Last change
on this file since 65 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:
839 bytes
|
Line | |
---|
1 | OS = unknown
|
---|
2 | os2:OS = os2
|
---|
3 | win32:OS = win
|
---|
4 | unix:OS = nix
|
---|
5 | mac:OS = mac
|
---|
6 |
|
---|
7 | # stay clean
|
---|
8 | debug: {
|
---|
9 | MOC_DIR = .debug/.$$OS/.moc
|
---|
10 | OBJECTS_DIR = .debug/.$$OS/.obj
|
---|
11 | UI_DIR = .debug/.$$OS/.ui
|
---|
12 | } else {
|
---|
13 | MOC_DIR = .$$OS/.moc
|
---|
14 | OBJECTS_DIR = .$$OS/.obj
|
---|
15 | UI_DIR = .$$OS/.ui
|
---|
16 | }
|
---|
17 |
|
---|
18 | # include some of cutestuff
|
---|
19 | CONFIG += cutestuff
|
---|
20 | CS_BASE = ../../../cutestuff
|
---|
21 | exists(cutestuff) {
|
---|
22 | CS_BASE = cutestuff
|
---|
23 | }
|
---|
24 | exists(cs.pri) {
|
---|
25 | include(cs.pri)
|
---|
26 | }
|
---|
27 | !exists(cs.pri) {
|
---|
28 | include(../../cs.pri)
|
---|
29 | }
|
---|
30 |
|
---|
31 | # qca
|
---|
32 | #DEFINES += QCA_STATIC
|
---|
33 | #QCA_PREFIX = qca
|
---|
34 | #!exists(qca) {
|
---|
35 | # QCA_PREFIX = ../../../qca/src
|
---|
36 | #}
|
---|
37 | #INCLUDEPATH += $$QCA_PREFIX
|
---|
38 | #HEADERS += $$QCA_PREFIX/qca.h $$QCA_PREFIX/qcaprovider.h
|
---|
39 | #SOURCES += $$QCA_PREFIX/qca.cpp
|
---|
40 | LIBS += -lqca
|
---|
41 |
|
---|
42 | # iris
|
---|
43 | exists(iris) {
|
---|
44 | IRIS_BASE = iris
|
---|
45 | }
|
---|
46 | !exists(iris) {
|
---|
47 | IRIS_BASE = ../..
|
---|
48 | }
|
---|
49 | include($$IRIS_BASE/iris.pri)
|
---|
50 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.