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