summaryrefslogtreecommitdiffstats
path: root/examples/designer/customwidgetplugin/customwidgetplugin.pro
blob: 07428304b9d4231816886bca3a08e6c0b7a42772 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! [1]
QT          += widgets uiplugin
#! [1]

#! [0]
CONFIG      += plugin
TEMPLATE    = lib
#! [0]

#! [3]
TARGET = $$qtLibraryTarget($$TARGET)

target.path = $$[QT_INSTALL_PLUGINS]/designer
INSTALLS += target
#! [3]

#! [2]
HEADERS     = analogclock.h \
              customwidgetplugin.h
SOURCES     = analogclock.cpp \
              customwidgetplugin.cpp
OTHER_FILES += analogclock.json
#! [2]