chris@617
|
1
|
chris@617
|
2 TEMPLATE = lib
|
chris@617
|
3
|
Chris@1050
|
4 INCLUDEPATH += ../vamp-plugin-sdk
|
Chris@1050
|
5 DEFINES += HAVE_VAMP HAVE_VAMPHOSTSDK
|
Chris@1050
|
6
|
Chris@624
|
7 exists(config.pri) {
|
Chris@624
|
8 include(config.pri)
|
Chris@624
|
9 }
|
Chris@710
|
10 !exists(config.pri) {
|
Chris@734
|
11
|
Chris@734
|
12 CONFIG += release
|
Chris@734
|
13 DEFINES += NDEBUG BUILD_RELEASE NO_TIMING
|
Chris@734
|
14
|
Chris@710
|
15 win32-g++ {
|
Chris@710
|
16 INCLUDEPATH += ../sv-dependency-builds/win32-mingw/include
|
Chris@710
|
17 LIBS += -L../sv-dependency-builds/win32-mingw/lib
|
Chris@624
|
18 }
|
Chris@710
|
19 win32-msvc* {
|
Chris@710
|
20 INCLUDEPATH += ../sv-dependency-builds/win32-msvc/include
|
Chris@710
|
21 LIBS += -L../sv-dependency-builds/win32-msvc/lib
|
Chris@710
|
22 }
|
Chris@710
|
23 macx* {
|
Chris@710
|
24 INCLUDEPATH += ../sv-dependency-builds/osx/include
|
Chris@710
|
25 LIBS += -L../sv-dependency-builds/osx/lib
|
Chris@710
|
26 }
|
Chris@710
|
27
|
Chris@1050
|
28 DEFINES += HAVE_BZ2 HAVE_FFTW3 HAVE_FFTW3F HAVE_SNDFILE HAVE_SAMPLERATE HAVE_RUBBERBAND HAVE_LIBLO HAVE_MAD HAVE_ID3TAG
|
Chris@624
|
29 }
|
chris@617
|
30
|
Chris@912
|
31 CONFIG += staticlib qt thread warn_on stl rtti exceptions c++11
|
Chris@957
|
32 QT += network xml gui widgets svg
|
chris@617
|
33
|
chris@617
|
34 TARGET = svgui
|
chris@617
|
35
|
chris@617
|
36 DEPENDPATH += . ../svcore
|
chris@617
|
37 INCLUDEPATH += . ../svcore
|
chris@617
|
38 OBJECTS_DIR = o
|
chris@617
|
39 MOC_DIR = o
|
chris@617
|
40
|
chris@617
|
41 HEADERS += layer/Colour3DPlotLayer.h \
|
Chris@1071
|
42 layer/Colour3DPlotRenderer.h \
|
chris@617
|
43 layer/ColourDatabase.h \
|
chris@617
|
44 layer/ColourMapper.h \
|
Chris@1069
|
45 layer/ColourScale.h \
|
Chris@699
|
46 layer/ColourScaleLayer.h \
|
Chris@696
|
47 layer/FlexiNoteLayer.h \
|
chris@617
|
48 layer/ImageLayer.h \
|
chris@617
|
49 layer/ImageRegionFinder.h \
|
chris@617
|
50 layer/Layer.h \
|
chris@617
|
51 layer/LayerFactory.h \
|
Chris@1077
|
52 layer/LayerGeometryProvider.h \
|
Chris@698
|
53 layer/LinearNumericalScale.h \
|
Chris@698
|
54 layer/LogNumericalScale.h \
|
Chris@699
|
55 layer/LinearColourScale.h \
|
Chris@699
|
56 layer/LogColourScale.h \
|
chris@617
|
57 layer/NoteLayer.h \
|
chris@617
|
58 layer/PaintAssistant.h \
|
Chris@690
|
59 layer/PianoScale.h \
|
chris@617
|
60 layer/RegionLayer.h \
|
Chris@1074
|
61 layer/RenderTimer.h \
|
Chris@1030
|
62 layer/ScrollableImageCache.h \
|
chris@617
|
63 layer/SingleColourLayer.h \
|
chris@617
|
64 layer/SliceableLayer.h \
|
chris@617
|
65 layer/SliceLayer.h \
|
chris@617
|
66 layer/SpectrogramLayer.h \
|
chris@617
|
67 layer/SpectrumLayer.h \
|
chris@617
|
68 layer/TextLayer.h \
|
chris@617
|
69 layer/TimeInstantLayer.h \
|
chris@617
|
70 layer/TimeRulerLayer.h \
|
chris@617
|
71 layer/TimeValueLayer.h \
|
Chris@698
|
72 layer/VerticalScaleLayer.h \
|
chris@617
|
73 layer/WaveformLayer.h
|
chris@617
|
74 SOURCES += layer/Colour3DPlotLayer.cpp \
|
Chris@1071
|
75 layer/Colour3DPlotRenderer.cpp \
|
chris@617
|
76 layer/ColourDatabase.cpp \
|
chris@617
|
77 layer/ColourMapper.cpp \
|
Chris@1069
|
78 layer/ColourScale.cpp \
|
Chris@696
|
79 layer/FlexiNoteLayer.cpp \
|
chris@617
|
80 layer/ImageLayer.cpp \
|
chris@617
|
81 layer/ImageRegionFinder.cpp \
|
chris@617
|
82 layer/Layer.cpp \
|
chris@617
|
83 layer/LayerFactory.cpp \
|
Chris@698
|
84 layer/LinearNumericalScale.cpp \
|
Chris@698
|
85 layer/LogNumericalScale.cpp \
|
Chris@699
|
86 layer/LinearColourScale.cpp \
|
Chris@699
|
87 layer/LogColourScale.cpp \
|
chris@617
|
88 layer/NoteLayer.cpp \
|
chris@617
|
89 layer/PaintAssistant.cpp \
|
Chris@690
|
90 layer/PianoScale.cpp \
|
chris@617
|
91 layer/RegionLayer.cpp \
|
Chris@1031
|
92 layer/ScrollableImageCache.cpp \
|
chris@617
|
93 layer/SingleColourLayer.cpp \
|
chris@617
|
94 layer/SliceLayer.cpp \
|
chris@617
|
95 layer/SpectrogramLayer.cpp \
|
chris@617
|
96 layer/SpectrumLayer.cpp \
|
chris@617
|
97 layer/TextLayer.cpp \
|
chris@617
|
98 layer/TimeInstantLayer.cpp \
|
chris@617
|
99 layer/TimeRulerLayer.cpp \
|
chris@617
|
100 layer/TimeValueLayer.cpp \
|
chris@617
|
101 layer/WaveformLayer.cpp
|
chris@617
|
102
|
Chris@867
|
103 HEADERS += view/AlignmentView.h \
|
Chris@867
|
104 view/Overview.h \
|
chris@617
|
105 view/Pane.h \
|
chris@617
|
106 view/PaneStack.h \
|
chris@617
|
107 view/View.h \
|
Chris@919
|
108 view/ViewManager.h \
|
Chris@919
|
109 view/ViewProxy.h
|
Chris@1045
|
110
|
Chris@867
|
111 SOURCES += view/AlignmentView.cpp \
|
Chris@867
|
112 view/Overview.cpp \
|
chris@617
|
113 view/Pane.cpp \
|
chris@617
|
114 view/PaneStack.cpp \
|
chris@617
|
115 view/View.cpp \
|
chris@617
|
116 view/ViewManager.cpp
|
chris@617
|
117
|
chris@617
|
118 HEADERS += widgets/ActivityLog.h \
|
chris@617
|
119 widgets/AudioDial.h \
|
chris@617
|
120 widgets/ClickableLabel.h \
|
chris@617
|
121 widgets/ColourNameDialog.h \
|
chris@617
|
122 widgets/CommandHistory.h \
|
chris@617
|
123 widgets/CSVFormatDialog.h \
|
chris@617
|
124 widgets/Fader.h \
|
chris@617
|
125 widgets/InteractiveFileFinder.h \
|
chris@617
|
126 widgets/IconLoader.h \
|
chris@617
|
127 widgets/ImageDialog.h \
|
chris@617
|
128 widgets/ItemEditDialog.h \
|
chris@617
|
129 widgets/KeyReference.h \
|
chris@617
|
130 widgets/LabelCounterInputDialog.h \
|
chris@617
|
131 widgets/LayerTree.h \
|
chris@617
|
132 widgets/LayerTreeDialog.h \
|
chris@617
|
133 widgets/LEDButton.h \
|
Chris@929
|
134 widgets/LevelPanToolButton.h \
|
Chris@923
|
135 widgets/LevelPanWidget.h \
|
chris@617
|
136 widgets/ListInputDialog.h \
|
chris@617
|
137 widgets/MIDIFileImportDialog.h \
|
chris@617
|
138 widgets/ModelDataTableDialog.h \
|
chris@617
|
139 widgets/NotifyingCheckBox.h \
|
chris@617
|
140 widgets/NotifyingComboBox.h \
|
chris@617
|
141 widgets/NotifyingPushButton.h \
|
chris@617
|
142 widgets/NotifyingTabBar.h \
|
chris@617
|
143 widgets/Panner.h \
|
chris@617
|
144 widgets/PluginParameterBox.h \
|
chris@617
|
145 widgets/PluginParameterDialog.h \
|
chris@617
|
146 widgets/ProgressDialog.h \
|
chris@617
|
147 widgets/PropertyBox.h \
|
chris@617
|
148 widgets/PropertyStack.h \
|
chris@617
|
149 widgets/RangeInputDialog.h \
|
chris@617
|
150 widgets/SelectableLabel.h \
|
chris@617
|
151 widgets/SubdividingMenu.h \
|
chris@617
|
152 widgets/TextAbbrev.h \
|
chris@617
|
153 widgets/Thumbwheel.h \
|
chris@617
|
154 widgets/TipDialog.h \
|
chris@617
|
155 widgets/TransformFinder.h \
|
Chris@884
|
156 widgets/UnitConverter.h \
|
chris@617
|
157 widgets/WindowShapePreview.h \
|
chris@617
|
158 widgets/WindowTypeSelector.h
|
chris@617
|
159 SOURCES += widgets/ActivityLog.cpp \
|
chris@617
|
160 widgets/AudioDial.cpp \
|
chris@617
|
161 widgets/ColourNameDialog.cpp \
|
chris@617
|
162 widgets/CommandHistory.cpp \
|
chris@617
|
163 widgets/CSVFormatDialog.cpp \
|
chris@617
|
164 widgets/Fader.cpp \
|
chris@617
|
165 widgets/InteractiveFileFinder.cpp \
|
chris@617
|
166 widgets/IconLoader.cpp \
|
chris@617
|
167 widgets/ImageDialog.cpp \
|
chris@617
|
168 widgets/ItemEditDialog.cpp \
|
chris@617
|
169 widgets/KeyReference.cpp \
|
chris@617
|
170 widgets/LabelCounterInputDialog.cpp \
|
chris@617
|
171 widgets/LayerTree.cpp \
|
chris@617
|
172 widgets/LayerTreeDialog.cpp \
|
chris@617
|
173 widgets/LEDButton.cpp \
|
Chris@929
|
174 widgets/LevelPanToolButton.cpp \
|
Chris@923
|
175 widgets/LevelPanWidget.cpp \
|
chris@617
|
176 widgets/ListInputDialog.cpp \
|
chris@617
|
177 widgets/MIDIFileImportDialog.cpp \
|
chris@617
|
178 widgets/ModelDataTableDialog.cpp \
|
chris@617
|
179 widgets/NotifyingCheckBox.cpp \
|
chris@617
|
180 widgets/NotifyingComboBox.cpp \
|
chris@617
|
181 widgets/NotifyingPushButton.cpp \
|
chris@617
|
182 widgets/NotifyingTabBar.cpp \
|
chris@617
|
183 widgets/Panner.cpp \
|
chris@617
|
184 widgets/PluginParameterBox.cpp \
|
chris@617
|
185 widgets/PluginParameterDialog.cpp \
|
chris@617
|
186 widgets/ProgressDialog.cpp \
|
chris@617
|
187 widgets/PropertyBox.cpp \
|
chris@617
|
188 widgets/PropertyStack.cpp \
|
chris@617
|
189 widgets/RangeInputDialog.cpp \
|
chris@617
|
190 widgets/SelectableLabel.cpp \
|
chris@617
|
191 widgets/SubdividingMenu.cpp \
|
chris@617
|
192 widgets/TextAbbrev.cpp \
|
chris@617
|
193 widgets/Thumbwheel.cpp \
|
chris@617
|
194 widgets/TipDialog.cpp \
|
chris@617
|
195 widgets/TransformFinder.cpp \
|
Chris@884
|
196 widgets/UnitConverter.cpp \
|
chris@617
|
197 widgets/WindowShapePreview.cpp \
|
chris@617
|
198 widgets/WindowTypeSelector.cpp
|