chris@617
|
1
|
chris@617
|
2 TEMPLATE = lib
|
chris@617
|
3
|
chris@617
|
4 include(config.pri)
|
chris@617
|
5
|
chris@617
|
6 CONFIG += staticlib qt thread warn_on stl rtti exceptions
|
chris@617
|
7 QT += network xml gui widgets
|
chris@617
|
8
|
chris@617
|
9 TARGET = svgui
|
chris@617
|
10
|
chris@617
|
11 DEPENDPATH += . ../svcore
|
chris@617
|
12 INCLUDEPATH += . ../svcore
|
chris@617
|
13 OBJECTS_DIR = o
|
chris@617
|
14 MOC_DIR = o
|
chris@617
|
15
|
chris@617
|
16 win32-g++ {
|
chris@617
|
17 INCLUDEPATH += ../sv-dependency-builds/win32-mingw/include
|
chris@617
|
18 }
|
chris@617
|
19 win32-msvc* {
|
chris@617
|
20 INCLUDEPATH += ../sv-dependency-builds/win32-msvc/include
|
chris@617
|
21 }
|
chris@617
|
22
|
chris@617
|
23 HEADERS += layer/Colour3DPlotLayer.h \
|
chris@617
|
24 layer/ColourDatabase.h \
|
chris@617
|
25 layer/ColourMapper.h \
|
chris@617
|
26 layer/ImageLayer.h \
|
chris@617
|
27 layer/ImageRegionFinder.h \
|
chris@617
|
28 layer/Layer.h \
|
chris@617
|
29 layer/LayerFactory.h \
|
chris@617
|
30 layer/NoteLayer.h \
|
chris@617
|
31 layer/PaintAssistant.h \
|
chris@617
|
32 layer/RegionLayer.h \
|
chris@617
|
33 layer/SingleColourLayer.h \
|
chris@617
|
34 layer/SliceableLayer.h \
|
chris@617
|
35 layer/SliceLayer.h \
|
chris@617
|
36 layer/SpectrogramLayer.h \
|
chris@617
|
37 layer/SpectrumLayer.h \
|
chris@617
|
38 layer/TextLayer.h \
|
chris@617
|
39 layer/TimeInstantLayer.h \
|
chris@617
|
40 layer/TimeRulerLayer.h \
|
chris@617
|
41 layer/TimeValueLayer.h \
|
chris@617
|
42 layer/WaveformLayer.h
|
chris@617
|
43 SOURCES += layer/Colour3DPlotLayer.cpp \
|
chris@617
|
44 layer/ColourDatabase.cpp \
|
chris@617
|
45 layer/ColourMapper.cpp \
|
chris@617
|
46 layer/ImageLayer.cpp \
|
chris@617
|
47 layer/ImageRegionFinder.cpp \
|
chris@617
|
48 layer/Layer.cpp \
|
chris@617
|
49 layer/LayerFactory.cpp \
|
chris@617
|
50 layer/NoteLayer.cpp \
|
chris@617
|
51 layer/PaintAssistant.cpp \
|
chris@617
|
52 layer/RegionLayer.cpp \
|
chris@617
|
53 layer/SingleColourLayer.cpp \
|
chris@617
|
54 layer/SliceLayer.cpp \
|
chris@617
|
55 layer/SpectrogramLayer.cpp \
|
chris@617
|
56 layer/SpectrumLayer.cpp \
|
chris@617
|
57 layer/TextLayer.cpp \
|
chris@617
|
58 layer/TimeInstantLayer.cpp \
|
chris@617
|
59 layer/TimeRulerLayer.cpp \
|
chris@617
|
60 layer/TimeValueLayer.cpp \
|
chris@617
|
61 layer/WaveformLayer.cpp
|
chris@617
|
62
|
chris@617
|
63 HEADERS += view/Overview.h \
|
chris@617
|
64 view/Pane.h \
|
chris@617
|
65 view/PaneStack.h \
|
chris@617
|
66 view/View.h \
|
chris@617
|
67 view/ViewManager.h
|
chris@617
|
68 SOURCES += view/Overview.cpp \
|
chris@617
|
69 view/Pane.cpp \
|
chris@617
|
70 view/PaneStack.cpp \
|
chris@617
|
71 view/View.cpp \
|
chris@617
|
72 view/ViewManager.cpp
|
chris@617
|
73
|
chris@617
|
74 HEADERS += widgets/ActivityLog.h \
|
chris@617
|
75 widgets/AudioDial.h \
|
chris@617
|
76 widgets/ClickableLabel.h \
|
chris@617
|
77 widgets/ColourNameDialog.h \
|
chris@617
|
78 widgets/CommandHistory.h \
|
chris@617
|
79 widgets/CSVFormatDialog.h \
|
chris@617
|
80 widgets/Fader.h \
|
chris@617
|
81 widgets/InteractiveFileFinder.h \
|
chris@617
|
82 widgets/IconLoader.h \
|
chris@617
|
83 widgets/ImageDialog.h \
|
chris@617
|
84 widgets/ItemEditDialog.h \
|
chris@617
|
85 widgets/KeyReference.h \
|
chris@617
|
86 widgets/LabelCounterInputDialog.h \
|
chris@617
|
87 widgets/LayerTree.h \
|
chris@617
|
88 widgets/LayerTreeDialog.h \
|
chris@617
|
89 widgets/LEDButton.h \
|
chris@617
|
90 widgets/ListInputDialog.h \
|
chris@617
|
91 widgets/MIDIFileImportDialog.h \
|
chris@617
|
92 widgets/ModelDataTableDialog.h \
|
chris@617
|
93 widgets/NotifyingCheckBox.h \
|
chris@617
|
94 widgets/NotifyingComboBox.h \
|
chris@617
|
95 widgets/NotifyingPushButton.h \
|
chris@617
|
96 widgets/NotifyingTabBar.h \
|
chris@617
|
97 widgets/Panner.h \
|
chris@617
|
98 widgets/PluginParameterBox.h \
|
chris@617
|
99 widgets/PluginParameterDialog.h \
|
chris@617
|
100 widgets/ProgressDialog.h \
|
chris@617
|
101 widgets/PropertyBox.h \
|
chris@617
|
102 widgets/PropertyStack.h \
|
chris@617
|
103 widgets/RangeInputDialog.h \
|
chris@617
|
104 widgets/SelectableLabel.h \
|
chris@617
|
105 widgets/SubdividingMenu.h \
|
chris@617
|
106 widgets/TextAbbrev.h \
|
chris@617
|
107 widgets/Thumbwheel.h \
|
chris@617
|
108 widgets/TipDialog.h \
|
chris@617
|
109 widgets/TransformFinder.h \
|
chris@617
|
110 widgets/WindowShapePreview.h \
|
chris@617
|
111 widgets/WindowTypeSelector.h
|
chris@617
|
112 SOURCES += widgets/ActivityLog.cpp \
|
chris@617
|
113 widgets/AudioDial.cpp \
|
chris@617
|
114 widgets/ColourNameDialog.cpp \
|
chris@617
|
115 widgets/CommandHistory.cpp \
|
chris@617
|
116 widgets/CSVFormatDialog.cpp \
|
chris@617
|
117 widgets/Fader.cpp \
|
chris@617
|
118 widgets/InteractiveFileFinder.cpp \
|
chris@617
|
119 widgets/IconLoader.cpp \
|
chris@617
|
120 widgets/ImageDialog.cpp \
|
chris@617
|
121 widgets/ItemEditDialog.cpp \
|
chris@617
|
122 widgets/KeyReference.cpp \
|
chris@617
|
123 widgets/LabelCounterInputDialog.cpp \
|
chris@617
|
124 widgets/LayerTree.cpp \
|
chris@617
|
125 widgets/LayerTreeDialog.cpp \
|
chris@617
|
126 widgets/LEDButton.cpp \
|
chris@617
|
127 widgets/ListInputDialog.cpp \
|
chris@617
|
128 widgets/MIDIFileImportDialog.cpp \
|
chris@617
|
129 widgets/ModelDataTableDialog.cpp \
|
chris@617
|
130 widgets/NotifyingCheckBox.cpp \
|
chris@617
|
131 widgets/NotifyingComboBox.cpp \
|
chris@617
|
132 widgets/NotifyingPushButton.cpp \
|
chris@617
|
133 widgets/NotifyingTabBar.cpp \
|
chris@617
|
134 widgets/Panner.cpp \
|
chris@617
|
135 widgets/PluginParameterBox.cpp \
|
chris@617
|
136 widgets/PluginParameterDialog.cpp \
|
chris@617
|
137 widgets/ProgressDialog.cpp \
|
chris@617
|
138 widgets/PropertyBox.cpp \
|
chris@617
|
139 widgets/PropertyStack.cpp \
|
chris@617
|
140 widgets/RangeInputDialog.cpp \
|
chris@617
|
141 widgets/SelectableLabel.cpp \
|
chris@617
|
142 widgets/SubdividingMenu.cpp \
|
chris@617
|
143 widgets/TextAbbrev.cpp \
|
chris@617
|
144 widgets/Thumbwheel.cpp \
|
chris@617
|
145 widgets/TipDialog.cpp \
|
chris@617
|
146 widgets/TransformFinder.cpp \
|
chris@617
|
147 widgets/WindowShapePreview.cpp \
|
chris@617
|
148 widgets/WindowTypeSelector.cpp
|