source: psi/trunk/libpsi/psiwidgets/psiwidgets.pro@ 189

Last change on this file since 189 was 66, checked in by dmik, 19 years ago

Psi: Fixed multi-platform builds.

File size: 815 bytes
Line 
1TEMPLATE = lib
2CONFIG += qt thread warn_on release plugin
3TARGET = psiwidgets
4os2:TARGET = psiwgts
5
6#target.path = $(QTDIR)/plugins/designer
7#INSTALLS += target
8
9SOURCES += \
10 psiwidgets.cpp \
11 fancylabel.cpp \
12 busywidget.cpp \
13 iconwidget.cpp \
14 psitextview.cpp \
15 psitabwidget.cpp \
16 psitabbar.cpp
17
18HEADERS += \
19 psiwidgets.h \
20 fancylabel.h \
21 busywidget.h \
22 iconwidget.h \
23 psitextview.h \
24 psitabwidget.h \
25 psitabbar.h
26
27DISTFILES += \
28 README \
29 iconselect.cpp \
30 iconselect.h
31
32DEFINES += WIDGET_PLUGIN
33
34OS = unknown
35os2:OS = os2
36win32:OS = win
37unix:OS = nix
38mac:OS = mac
39
40debug: {
41 MOC_DIR = .debug/.$$OS/.moc
42 OBJECTS_DIR = .debug/.$$OS/.obj
43 UI_DIR = .debug/.$$OS/.ui
44} else {
45 MOC_DIR = .$$OS/.moc
46 OBJECTS_DIR = .$$OS/.obj
47 UI_DIR = .$$OS/.ui
48}
49
50DESTDIR = lib$$OS
Note: See TracBrowser for help on using the repository browser.