source: psi/trunk/src/tools/dwtest.pro@ 174

Last change on this file since 174 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: 520 bytes
Line 
1TEMPLATE = app
2TARGET = dwtest
3CONFIG += qt thread console
4
5OS = unknown
6os2:OS = os2
7win32:OS = win
8unix:OS = nix
9mac:OS = mac
10
11debug: {
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
21DEFINES += HAVE_DNOTIFY
22
23CONFIG += dirwatch
24DIRWATCH_CPP = dirwatch
25include($$DIRWATCH_CPP/dirwatch.pri)
26
27INCLUDEPATH += dirwatch
28
29HEADERS += dwtest.h
30SOURCES += dwtest.cpp
31
Note: See TracBrowser for help on using the repository browser.