Mercurial > hg > svcore
comparison svcore.pro @ 666:4efa7429cd85 coreaudio_tests
config files with changes regarding osx compilation flags.
author | luisf |
---|---|
date | Mon, 29 Nov 2010 12:45:39 +0000 |
parents | |
children | c10cb8782576 |
comparison
equal
deleted
inserted
replaced
665:029dd9e5cc29 | 666:4efa7429cd85 |
---|---|
1 | |
2 TEMPLATE = lib | |
3 | |
4 include(config.pri) | |
5 | |
6 CONFIG += staticlib qt thread warn_on stl rtti exceptions | |
7 QT += network xml | |
8 QT -= gui | |
9 | |
10 TARGET = svcore | |
11 | |
12 DEPENDPATH += . data plugin plugin/api/alsa | |
13 INCLUDEPATH += . data plugin plugin/api/alsa | |
14 OBJECTS_DIR = o | |
15 MOC_DIR = o | |
16 | |
17 # Doesn't work with this library, which contains C99 as well as C++ | |
18 PRECOMPILED_HEADER = | |
19 | |
20 # Set up suitable platform defines for RtMidi | |
21 linux*: DEFINES += __LINUX_ALSASEQ__ | |
22 macx*: DEFINES += __MACOSX_CORE__ | |
23 win*: DEFINES += __WINDOWS_MM__ | |
24 solaris*: DEFINES += __RTMIDI_DUMMY_ONLY__ | |
25 | |
26 HEADERS += base/AudioLevel.h \ | |
27 base/AudioPlaySource.h \ | |
28 base/Clipboard.h \ | |
29 base/Command.h \ | |
30 base/Exceptions.h \ | |
31 base/LogRange.h \ | |
32 base/Pitch.h \ | |
33 base/Playable.h \ | |
34 base/PlayParameterRepository.h \ | |
35 base/PlayParameters.h \ | |
36 base/Preferences.h \ | |
37 base/Profiler.h \ | |
38 base/ProgressPrinter.h \ | |
39 base/ProgressReporter.h \ | |
40 base/PropertyContainer.h \ | |
41 base/RangeMapper.h \ | |
42 base/RealTime.h \ | |
43 base/RecentFiles.h \ | |
44 base/Resampler.h \ | |
45 base/ResizeableBitset.h \ | |
46 base/RingBuffer.h \ | |
47 base/Scavenger.h \ | |
48 base/Selection.h \ | |
49 base/Serialiser.h \ | |
50 base/StorageAdviser.h \ | |
51 base/StringBits.h \ | |
52 base/TempDirectory.h \ | |
53 base/TextMatcher.h \ | |
54 base/Thread.h \ | |
55 base/UnitDatabase.h \ | |
56 base/ViewManagerBase.h \ | |
57 base/Window.h \ | |
58 base/XmlExportable.h \ | |
59 base/ZoomConstraint.h | |
60 SOURCES += base/AudioLevel.cpp \ | |
61 base/Clipboard.cpp \ | |
62 base/Command.cpp \ | |
63 base/Exceptions.cpp \ | |
64 base/LogRange.cpp \ | |
65 base/Pitch.cpp \ | |
66 base/PlayParameterRepository.cpp \ | |
67 base/PlayParameters.cpp \ | |
68 base/Preferences.cpp \ | |
69 base/Profiler.cpp \ | |
70 base/ProgressPrinter.cpp \ | |
71 base/ProgressReporter.cpp \ | |
72 base/PropertyContainer.cpp \ | |
73 base/RangeMapper.cpp \ | |
74 base/RealTime.cpp \ | |
75 base/RecentFiles.cpp \ | |
76 base/Resampler.cpp \ | |
77 base/Selection.cpp \ | |
78 base/Serialiser.cpp \ | |
79 base/StorageAdviser.cpp \ | |
80 base/StringBits.cpp \ | |
81 base/TempDirectory.cpp \ | |
82 base/TextMatcher.cpp \ | |
83 base/Thread.cpp \ | |
84 base/UnitDatabase.cpp \ | |
85 base/ViewManagerBase.cpp \ | |
86 base/XmlExportable.cpp | |
87 | |
88 HEADERS += data/fft/FFTapi.h \ | |
89 data/fft/FFTCacheReader.h \ | |
90 data/fft/FFTCacheStorageType.h \ | |
91 data/fft/FFTCacheWriter.h \ | |
92 data/fft/FFTDataServer.h \ | |
93 data/fft/FFTFileCacheReader.h \ | |
94 data/fft/FFTFileCacheWriter.h \ | |
95 data/fft/FFTMemoryCache.h \ | |
96 data/fileio/AudioFileReader.h \ | |
97 data/fileio/AudioFileReaderFactory.h \ | |
98 data/fileio/BZipFileDevice.h \ | |
99 data/fileio/CachedFile.h \ | |
100 data/fileio/CodedAudioFileReader.h \ | |
101 data/fileio/CSVFileReader.h \ | |
102 data/fileio/CSVFileWriter.h \ | |
103 data/fileio/CSVFormat.h \ | |
104 data/fileio/DataFileReader.h \ | |
105 data/fileio/DataFileReaderFactory.h \ | |
106 data/fileio/FileFinder.h \ | |
107 data/fileio/FileReadThread.h \ | |
108 data/fileio/FileSource.h \ | |
109 data/fileio/MatchFileReader.h \ | |
110 data/fileio/MatrixFile.h \ | |
111 data/fileio/MIDIFileReader.h \ | |
112 data/fileio/MIDIFileWriter.h \ | |
113 data/fileio/MP3FileReader.h \ | |
114 data/fileio/OggVorbisFileReader.h \ | |
115 data/fileio/PlaylistFileReader.h \ | |
116 data/fileio/QuickTimeFileReader.h \ | |
117 data/fileio/CoreAudioFileReader.h \ | |
118 data/fileio/ResamplingWavFileReader.h \ | |
119 data/fileio/WavFileReader.h \ | |
120 data/fileio/WavFileWriter.h \ | |
121 data/midi/MIDIEvent.h \ | |
122 data/midi/MIDIInput.h \ | |
123 data/midi/rtmidi/RtError.h \ | |
124 data/midi/rtmidi/RtMidi.h \ | |
125 data/model/AggregateWaveModel.h \ | |
126 data/model/AlignmentModel.h \ | |
127 data/model/Dense3DModelPeakCache.h \ | |
128 data/model/DenseThreeDimensionalModel.h \ | |
129 data/model/DenseTimeValueModel.h \ | |
130 data/model/EditableDenseThreeDimensionalModel.h \ | |
131 data/model/FFTModel.h \ | |
132 data/model/ImageModel.h \ | |
133 data/model/IntervalModel.h \ | |
134 data/model/Labeller.h \ | |
135 data/model/Model.h \ | |
136 data/model/ModelDataTableModel.h \ | |
137 data/model/NoteModel.h \ | |
138 data/model/PathModel.h \ | |
139 data/model/PowerOfSqrtTwoZoomConstraint.h \ | |
140 data/model/PowerOfTwoZoomConstraint.h \ | |
141 data/model/RangeSummarisableTimeValueModel.h \ | |
142 data/model/RegionModel.h \ | |
143 data/model/SparseModel.h \ | |
144 data/model/SparseOneDimensionalModel.h \ | |
145 data/model/SparseTimeValueModel.h \ | |
146 data/model/SparseValueModel.h \ | |
147 data/model/TabularModel.h \ | |
148 data/model/TextModel.h \ | |
149 data/model/WaveFileModel.h \ | |
150 data/model/WritableWaveFileModel.h \ | |
151 data/osc/OSCMessage.h \ | |
152 data/osc/OSCQueue.h | |
153 SOURCES += data/fft/FFTapi.cpp \ | |
154 data/fft/FFTDataServer.cpp \ | |
155 data/fft/FFTFileCacheReader.cpp \ | |
156 data/fft/FFTFileCacheWriter.cpp \ | |
157 data/fft/FFTMemoryCache.cpp \ | |
158 data/fileio/AudioFileReader.cpp \ | |
159 data/fileio/AudioFileReaderFactory.cpp \ | |
160 data/fileio/BZipFileDevice.cpp \ | |
161 data/fileio/CachedFile.cpp \ | |
162 data/fileio/CodedAudioFileReader.cpp \ | |
163 data/fileio/CSVFileReader.cpp \ | |
164 data/fileio/CSVFileWriter.cpp \ | |
165 data/fileio/CSVFormat.cpp \ | |
166 data/fileio/DataFileReaderFactory.cpp \ | |
167 data/fileio/FileReadThread.cpp \ | |
168 data/fileio/FileSource.cpp \ | |
169 data/fileio/MatchFileReader.cpp \ | |
170 data/fileio/MatrixFile.cpp \ | |
171 data/fileio/MIDIFileReader.cpp \ | |
172 data/fileio/MIDIFileWriter.cpp \ | |
173 data/fileio/MP3FileReader.cpp \ | |
174 data/fileio/OggVorbisFileReader.cpp \ | |
175 data/fileio/PlaylistFileReader.cpp \ | |
176 data/fileio/QuickTimeFileReader.cpp \ | |
177 data/fileio/CoreAudioFileReader.cpp \ | |
178 data/fileio/ResamplingWavFileReader.cpp \ | |
179 data/fileio/WavFileReader.cpp \ | |
180 data/fileio/WavFileWriter.cpp \ | |
181 data/midi/MIDIInput.cpp \ | |
182 data/midi/rtmidi/RtMidi.cpp \ | |
183 data/model/AggregateWaveModel.cpp \ | |
184 data/model/AlignmentModel.cpp \ | |
185 data/model/Dense3DModelPeakCache.cpp \ | |
186 data/model/DenseTimeValueModel.cpp \ | |
187 data/model/EditableDenseThreeDimensionalModel.cpp \ | |
188 data/model/FFTModel.cpp \ | |
189 data/model/Model.cpp \ | |
190 data/model/ModelDataTableModel.cpp \ | |
191 data/model/PowerOfSqrtTwoZoomConstraint.cpp \ | |
192 data/model/PowerOfTwoZoomConstraint.cpp \ | |
193 data/model/RangeSummarisableTimeValueModel.cpp \ | |
194 data/model/WaveFileModel.cpp \ | |
195 data/model/WritableWaveFileModel.cpp \ | |
196 data/osc/OSCMessage.cpp \ | |
197 data/osc/OSCQueue.cpp | |
198 | |
199 HEADERS += plugin/DSSIPluginFactory.h \ | |
200 plugin/DSSIPluginInstance.h \ | |
201 plugin/FeatureExtractionPluginFactory.h \ | |
202 plugin/LADSPAPluginFactory.h \ | |
203 plugin/LADSPAPluginInstance.h \ | |
204 plugin/PluginIdentifier.h \ | |
205 plugin/PluginXml.h \ | |
206 plugin/RealTimePluginFactory.h \ | |
207 plugin/RealTimePluginInstance.h \ | |
208 plugin/api/dssi.h \ | |
209 plugin/api/ladspa.h \ | |
210 plugin/plugins/SamplePlayer.h \ | |
211 plugin/api/alsa/asoundef.h \ | |
212 plugin/api/alsa/asoundlib.h \ | |
213 plugin/api/alsa/seq.h \ | |
214 plugin/api/alsa/seq_event.h \ | |
215 plugin/api/alsa/seq_midi_event.h \ | |
216 plugin/api/alsa/sound/asequencer.h | |
217 SOURCES += plugin/DSSIPluginFactory.cpp \ | |
218 plugin/DSSIPluginInstance.cpp \ | |
219 plugin/FeatureExtractionPluginFactory.cpp \ | |
220 plugin/LADSPAPluginFactory.cpp \ | |
221 plugin/LADSPAPluginInstance.cpp \ | |
222 plugin/PluginIdentifier.cpp \ | |
223 plugin/PluginXml.cpp \ | |
224 plugin/RealTimePluginFactory.cpp \ | |
225 plugin/RealTimePluginInstance.cpp \ | |
226 plugin/api/dssi_alsa_compat.c \ | |
227 plugin/plugins/SamplePlayer.cpp | |
228 | |
229 HEADERS += rdf/PluginRDFDescription.h \ | |
230 rdf/PluginRDFIndexer.h \ | |
231 rdf/RDFExporter.h \ | |
232 rdf/RDFFeatureWriter.h \ | |
233 rdf/RDFImporter.h \ | |
234 rdf/RDFTransformFactory.h \ | |
235 rdf/SimpleSPARQLQuery.h | |
236 SOURCES += rdf/PluginRDFDescription.cpp \ | |
237 rdf/PluginRDFIndexer.cpp \ | |
238 rdf/RDFExporter.cpp \ | |
239 rdf/RDFFeatureWriter.cpp \ | |
240 rdf/RDFImporter.cpp \ | |
241 rdf/RDFTransformFactory.cpp \ | |
242 rdf/SimpleSPARQLQuery.cpp | |
243 | |
244 HEADERS += system/Init.h \ | |
245 system/System.h | |
246 SOURCES += system/Init.cpp \ | |
247 system/System.cpp | |
248 | |
249 HEADERS += transform/CSVFeatureWriter.h \ | |
250 transform/FeatureExtractionModelTransformer.h \ | |
251 transform/FeatureWriter.h \ | |
252 transform/FileFeatureWriter.h \ | |
253 transform/RealTimeEffectModelTransformer.h \ | |
254 transform/Transform.h \ | |
255 transform/TransformDescription.h \ | |
256 transform/TransformFactory.h \ | |
257 transform/ModelTransformer.h \ | |
258 transform/ModelTransformerFactory.h | |
259 SOURCES += transform/CSVFeatureWriter.cpp \ | |
260 transform/FeatureExtractionModelTransformer.cpp \ | |
261 transform/FileFeatureWriter.cpp \ | |
262 transform/RealTimeEffectModelTransformer.cpp \ | |
263 transform/Transform.cpp \ | |
264 transform/TransformFactory.cpp \ | |
265 transform/ModelTransformer.cpp \ | |
266 transform/ModelTransformerFactory.cpp |