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:
616 bytes
|
Rev | Line | |
---|
[2] | 1 | TEMPLATE = app
|
---|
| 2 | TARGET = pgptest
|
---|
| 3 | CONFIG += qt thread
|
---|
| 4 |
|
---|
[56] | 5 | OS = unknown
|
---|
| 6 | os2:OS = os2
|
---|
| 7 | win32:OS = win
|
---|
| 8 | unix:OS = nix
|
---|
| 9 | mac:OS = mac
|
---|
[2] | 10 |
|
---|
[56] | 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 |
|
---|
[2] | 21 | DEFINES += GPG_DEBUG HAVE_DNOTIFY
|
---|
| 22 |
|
---|
| 23 | CONFIG += dirwatch
|
---|
| 24 | DIRWATCH_CPP = dirwatch
|
---|
| 25 | include($$DIRWATCH_CPP/dirwatch.pri)
|
---|
| 26 |
|
---|
| 27 | CONFIG += openpgp
|
---|
| 28 | OPENPGP_CPP = openpgp
|
---|
| 29 | include($$OPENPGP_CPP/openpgp.pri)
|
---|
| 30 |
|
---|
| 31 | INCLUDEPATH += dirwatch openpgp
|
---|
| 32 |
|
---|
| 33 | HEADERS += \
|
---|
| 34 | pgptest.h
|
---|
| 35 |
|
---|
| 36 | SOURCES += \
|
---|
| 37 | pgptest.cpp
|
---|
| 38 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.