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