1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
# pro file for the Qwt designer plugin
#
# Please note that the Qwt designer integration
# is limited by the current (Qt <= 3.1.x) design
# of the Qt plugin API. As soon as TrollTech will allow
# individual dialogs for complex widgets the result
# will be more satisfying.
#
# Qwt designer plugin needs Qt >= 3.x. It is
# not intended to support Qt 2.x like the Qwt lib
# does.
TARGET = qwtplugin
TEMPLATE = lib
CONFIG += qt warn_on thread debug plugin
MOC_DIR = moc
OBJECTS_DIR = obj
INCLUDEPATH += ../include
DESTDIR = plugins/designer
unix:LIBS += -L../lib -lqwt
win32:LIBS += ../lib/qwt.lib
linux-g++:QMAKE_CXXFLAGS += -fno-exceptions
target.path=$(QTDIR)/plugins/designer
INSTALLS += target
HEADERS += qwtplugin.h
SOURCES += qwtplugin.cpp
IMAGES += \
pixmaps/qwtplot.png \
pixmaps/qwtanalogclock.png \
pixmaps/qwtcounter.png \
pixmaps/qwtcompass.png \
pixmaps/qwtdial.png \
pixmaps/qwtknob.png \
pixmaps/qwtpushbutton.png \
pixmaps/qwtscale.png \
pixmaps/qwtslider.png \
pixmaps/qwtthermo.png \
pixmaps/qwtwheel.png \
pixmaps/qwtwidget.png
|