-
Notifications
You must be signed in to change notification settings - Fork 12
/
SuWidgetsPlugin.pro
50 lines (44 loc) · 1.41 KB
/
SuWidgetsPlugin.pro
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
44
45
46
47
48
49
50
CONFIG += plugin debug_and_release
TARGET = $$qtLibraryTarget(suwidgetsplugin)
TEMPLATE = lib
VERSION = 0.1.0
CONFIG += plugin
QT += designer
include(SuWidgets.pri)
HEADERS = WFHelpers.h ConstellationPlugin.h TransitionPlugin.h HistogramPlugin.h LCDPlugin.h WaveformPlugin.h SymViewPlugin.h SuWidgets.h \
ContextAwareSpinBoxPlugin.h \
FrequencySpinBoxPlugin.h \
LEDPlugin.h \
PhaseViewPlugin.h \
PolarizationViewPlugin.h \
QVerticalLabelPlugin.h \
SciSpinBoxPlugin.h \
TVDisplayPlugin.h \
TimeSpinBoxPlugin.h \
WaterfallPlugin.h ctkRangeSliderPlugin.h \
ColorChooserButtonPlugin.h \
MultiToolBoxPlugin.h
SOURCES = ConstellationPlugin.cpp TransitionPlugin.cpp HistogramPlugin.cpp LCDPlugin.cpp WaveformPlugin.cpp SymViewPlugin.cpp SuWidgets.cpp \
ContextAwareSpinBoxPlugin.cpp \
FrequencySpinBoxPlugin.cpp \
LEDPlugin.cpp \
PhaseViewPlugin.cpp \
PolarizationViewPlugin.cpp \
QVerticalLabelPlugin.cpp \
SciSpinBoxPlugin.cpp \
TVDisplayPlugin.cpp \
TimeSpinBoxPlugin.cpp \
WaterfallPlugin.cpp ctkRangeSliderPlugin.cpp \
ColorChooserButtonPlugin.cpp \
MultiToolBoxPlugin.cpp
RESOURCES = icons.qrc
LIBS += -L. -lsuwidgets
greaterThan(QT_MAJOR_VERSION, 4) {
CONFIG += plugin
TEMPLATE = lib
QT += widgets
} else {
CONFIG += designer
}
target.path = $$[QT_INSTALL_PLUGINS]/designer
INSTALLS += target