Develop and Download Open Source Software

Browse Subversion Repository

Annotation of /trunk/StandCore.pro

Parent Directory Parent Directory | Revision Log Revision Log


Revision 68 - (hide annotations) (download)
Sun Nov 25 08:06:07 2012 UTC (11 years, 4 months ago) by haruneko24
File size: 9137 byte(s)


1 haruneko24 6 QT += core
2     QT += gui
3     QT += multimedia
4     QT += xml
5    
6     include(dependency.pri)
7     TEMPLATE = lib
8     DESTDIR = $${LIB_DIR}
9     TARGET = $${LIB_PREFIX}stand$${LIB_SUFFIX}
10    
11     CONFIG += mobility
12     CONFIG += staticlib
13     MOBILITY = multimedia
14    
15     SOURCES += \
16     io/WaveBuffer.cpp \
17     io/RiffFile.cpp \
18     io/RiffChunk.cpp \
19     utility/Utility.cpp \
20     math/SmootMatching.cpp \
21     math/NormalDistribution.cpp \
22     math/Matrix.cpp \
23     math/MathSet.cpp \
24     math/GmmSet.cpp \
25     math/GmmData.cpp \
26     sequence/importer/SimpleImporter.cpp \
27     sequence/VibratoHandle.cpp \
28     sequence/Track.cpp \
29     sequence/Tempo.cpp \
30     sequence/SingerEvent.cpp \
31     sequence/Sequence.cpp \
32     sequence/NoteEvent.cpp \
33     sequence/LyricHandle.cpp \
34     sequence/ControlCurve.cpp \
35     sequence/importer/VsqTextImporter.cpp \
36     sequence/Measure.cpp \
37     io/midi/MidiFile.cpp \
38     io/midi/MidiChunk.cpp \
39     io/midi/MidiEvent.cpp \
40     io/midi/MetaEvent.cpp \
41     io/midi/ExclusiveEvent.cpp \
42     sequence/importer/VsqImporter.cpp \
43     math/Pca.cpp \
44     io/utau/UtauLibrary.cpp \
45     io/utau/PrefixMap.cpp \
46     io/utau/CharacterSettings.cpp \
47     utility/MessageHandler.cpp \
48     delegate/TrackDelegate.cpp \
49     delegate/PitchDelegate.cpp \
50     delegate/NoteDelegate.cpp \
51     delegate/FileopenDelegate.cpp \
52     delegate/ComboboxDelegate.cpp \
53     utility/task/Task.cpp \
54     utility/task/Worker.cpp \
55     utility/envelope/VolumeComputer.cpp \
56     utility/envelope/F0Computer.cpp \
57     utility/envelope/Envelope.cpp \
58     utility/task/Manager.cpp \
59     gui/EditorWindow.cpp \
60     gui/EditorWidgetConstructor.cpp \
61     gui/EditorWidget.cpp \
62     gui/helper/WaveAnalysisTask.cpp \
63     gui/helper/TimeComputingTask.cpp \
64     gui/helper/EnvelopeComputingTask.cpp \
65     model/TreeItemModel.cpp \
66     model/TreeItem.cpp \
67     model/TrackItem.cpp \
68     model/SequenceModel.cpp \
69     model/PhonemeItem.cpp \
70     model/MeasureItem.cpp \
71     model/EventItem.cpp \
72     model/xml/TreeXmlFactory.cpp \
73     model/xml/SequenceXmlFactory.cpp \
74     model/importer/UtauCorpusImporter.cpp \
75     view/ViewSettings.cpp \
76     view/ViewArea.cpp \
77     view/TrackView.cpp \
78     view/TrackSelector.cpp \
79     view/TrackNameView.cpp \
80     view/SingerView.cpp \
81     view/PianoView.cpp \
82     view/MeasureView.cpp \
83     view/ControlView.cpp \
84     view/ControlSelector.cpp \
85     view/ControlArea.cpp \
86     view/AbstractPianoroll.cpp \
87     view/helper/PitchPainter.cpp \
88     echoes/Dictionary.cpp \
89     echoes/Data.cpp \
90     echoes/Alignment.cpp \
91     echoes/Analyzer.cpp \
92     echoes/Echoes.cpp \
93     echoes/Computer.cpp \
94     echoes/helper/Helper.cpp \
95     delegate/command/LyricChangeCommand.cpp \
96 haruneko24 9 io/audio/AudioTrack.cpp \
97 haruneko24 12 io/audio/AudioStream.cpp \
98     io/audio/AudioChunk.cpp \
99 haruneko24 21 io/audio/AudioRenderer.cpp \
100     io/audio/WaveWriter.cpp \
101     io/audio/WaveReader.cpp \
102 haruneko24 22 io/audio/helper/AudioHelpr.cpp \
103     synthesis/Vocoder.cpp \
104 haruneko24 23 synthesis/VocoderInfo.cpp \
105 haruneko24 24 synthesis/VocoderFrame.cpp \
106     synthesis/SynthesizerNote.cpp \
107 haruneko24 25 synthesis/SynthesizerExpression.cpp \
108 haruneko24 27 synthesis/SynthesizerTrack.cpp \
109 haruneko24 28 synthesis/SynthesizerPhrase.cpp \
110 haruneko24 29 synthesis/AbstractSynthesizer.cpp \
111 haruneko24 32 synthesis/AbstractVocoderEngine.cpp \
112     synthesis/AbstractCorpus.cpp \
113 haruneko24 35 synthesis/WaveCorpus.cpp \
114 haruneko24 36 synthesis/WorldEngine.cpp \
115     math/dsp/tandem_ap.cpp \
116     math/dsp/synthesis_ap.cpp \
117     math/dsp/synthesis.cpp \
118     math/dsp/star.cpp \
119     math/dsp/platinum.cpp \
120     math/dsp/matlabfunctions.cpp \
121     math/dsp/fft.cpp \
122     math/dsp/dio.cpp \
123 haruneko24 40 math/dsp/common.cpp \
124 haruneko24 49 utility/envelope/PulseLocationComputer.cpp \
125 haruneko24 50 utility/envelope/SquareAmpliferComputer.cpp \
126 haruneko24 51 gui/EditorProperty.cpp \
127 haruneko24 52 gui/helper/WaveSynthesisTask.cpp \
128 haruneko24 55 gui/TrackPreferenceDialog.cpp \
129 haruneko24 57 gui/SynthesizerFactory.cpp \
130     echoes/AbstractStyleGenerator.cpp \
131     gui/helper/PreferenceItem.cpp \
132 haruneko24 58 echoes/SimpleStyleGenerator.cpp \
133 haruneko24 59 gui/EditorPreferenceDialog.cpp \
134     gui/SingerPreferenceItem.cpp \
135     model/SingerModel.cpp \
136     model/ControlItem.cpp \
137 haruneko24 60 model/xml/SingerXmlFactory.cpp \
138 haruneko24 61 gui/helper/PreferenceFileDelegate.cpp \
139     echoes/EchoesSegment.cpp \
140     echoes/EchoesAnalysis.cpp \
141 haruneko24 64 echoes/EchoesInfo.cpp \
142     echoes/EchoesStyleModel.cpp \
143     echoes/EchoesQuery.cpp \
144 haruneko24 67 echoes/EchoesPhrase.cpp \
145 haruneko24 68 echoes/EchoesStyleGenerator.cpp \
146     view/helper/ControlCommand.cpp
147 haruneko24 6
148     HEADERS += \
149     configure.h \
150     io/WaveBuffer.h \
151     io/RiffFile.h \
152     io/RiffChunk.h \
153     utility/Utility.h \
154     math/SmootMatching.h \
155     math/NormalDistribution.h \
156     math/Matrix.h \
157     math/MathSet.h \
158     math/GmmSet.h \
159     math/GmmData.h \
160     sequence/importer/SimpleImporter.h \
161     sequence/importer/Interpreter.h \
162     sequence/importer/Importer.h \
163     sequence/VibratoHandle.h \
164     sequence/Track.h \
165     sequence/Tempo.h \
166     sequence/SingerEvent.h \
167     sequence/Sequence.h \
168     sequence/NoteEvent.h \
169     sequence/LyricHandle.h \
170     sequence/ControlCurve.h \
171     sequence/AbstractHandle.h \
172     sequence/AbstractEvent.h \
173     sequence/importer/Exporter.h \
174     sequence/importer/VsqTextImporter.h \
175     sequence/Measure.h \
176     io/midi/MidiFile.h \
177     io/midi/MidiChunk.h \
178     io/midi/MidiEvent.h \
179     io/midi/MetaEvent.h \
180     io/midi/ExclusiveEvent.h \
181     sequence/importer/VsqImporter.h \
182     math/Pca.h \
183     io/utau/UtauPhoneme.h \
184     io/utau/UtauLibrary.h \
185     io/utau/PrefixMap.h \
186     io/utau/CharacterSettings.h \
187     utility/MessageHandler.h \
188     delegate/TrackDelegate.h \
189     delegate/PitchDelegate.h \
190     delegate/NoteDelegate.h \
191     delegate/FileopenDelegate.h \
192     delegate/ComboboxDelegate.h \
193     utility/task/Task.h \
194     utility/task/Worker.h \
195     utility/envelope/VolumeComputer.h \
196     utility/envelope/F0Computer.h \
197     utility/envelope/EnvelopeComputer.h \
198     utility/envelope/Envelope.h \
199     utility/task/Manager.h \
200     gui/EditorWindow.h \
201     gui/EditorWidget.h \
202     gui/helper/WaveAnalysisTask.h \
203     gui/helper/EnvelopeComputingTask.h \
204     gui/helper/TimeComputingTask.h \
205     model/xml/TreeXmlFactory.h \
206     model/xml/SequenceXmlFactory.h \
207     view/ViewSettings.h \
208     view/ViewArea.h \
209     view/TrackView.h \
210     view/TrackSelector.h \
211     view/TrackNameView.h \
212     view/SingerView.h \
213     view/PianoView.h \
214     view/MeasureView.h \
215     view/ControlView.h \
216     view/ControlSelector.h \
217     view/ControlArea.h \
218     view/AbstractPianoroll.h \
219     view/helper/PitchPainter.h \
220     model/TreeItemModel.h \
221     model/TreeItem.h \
222     model/TrackItem.h \
223     model/SequenceModel.h \
224     model/PhonemeItem.h \
225     model/MeasureItem.h \
226     model/EventItem.h \
227     echoes/Dictionary.h \
228     echoes/Data.h \
229     echoes/Alignment.h \
230     echoes/Analyzer.h \
231     echoes/Computer.h \
232     echoes/Echoes.h \
233     utility/ControlPoint.h \
234     echoes/helper/Helper.h \
235     delegate/command/LyricChangeCommand.h \
236 haruneko24 9 io/audio/AudioTrack.h \
237 haruneko24 12 io/audio/AudioStream.h \
238     io/audio/AudioChunk.h \
239 haruneko24 21 io/audio/AudioRenderer.h \
240     io/audio/ChunkReader.h \
241     io/audio/ChunkWriter.h \
242     io/audio/WaveWriter.h \
243     io/audio/WaveReader.h \
244 haruneko24 22 io/audio/helper/AudioHelper.h \
245     synthesis/Vocoder.h \
246     synthesis/VocoderInfo.h \
247 haruneko24 24 synthesis/VocoderFrame.h \
248     synthesis/SynthesizerNote.h \
249 haruneko24 25 synthesis/SynthesizerExpression.h \
250 haruneko24 27 synthesis/SynthesizerTrack.h \
251 haruneko24 28 synthesis/SynthesizerPhrase.h \
252 haruneko24 29 synthesis/AbstractSynthesizer.h \
253 haruneko24 30 synthesis/AbstractVocoderEngine.h \
254     model/importer/UtauCorpusImporter.h \
255 haruneko24 32 model/importer/ModelImporter.h \
256     synthesis/AbstractCorpus.h \
257 haruneko24 35 synthesis/WaveCorpus.h \
258 haruneko24 36 synthesis/WorldEngine.h \
259     math/dsp/tandem_ap.h \
260     math/dsp/synthesis_ap.h \
261     math/dsp/synthesis.h \
262     math/dsp/star.h \
263     math/dsp/platinum.h \
264     math/dsp/matlabfunctions.h \
265     math/dsp/fft.h \
266     math/dsp/dio.h \
267     math/dsp/constant_numbers.h \
268 haruneko24 40 math/dsp/common.h \
269 haruneko24 49 utility/envelope/PulseLocationComputer.h \
270 haruneko24 50 utility/envelope/SquareAmpliferComputer.h \
271 haruneko24 51 gui/EditorProperty.h \
272 haruneko24 52 gui/helper/WaveSynthesisTask.h \
273 haruneko24 55 gui/TrackPreferenceDialog.h \
274 haruneko24 57 gui/SynthesizerFactory.h \
275     echoes/AbstractStyleGenerator.h \
276     gui/helper/PreferenceItem.h \
277 haruneko24 58 echoes/SimpleStyleGenerator.h \
278 haruneko24 59 gui/EditorPreferenceDialog.h \
279     gui/SingerPreferenceItem.h \
280     model/SingerModel.h \
281     model/ControlItem.h \
282 haruneko24 60 model/xml/SingerXmlFactory.h \
283 haruneko24 61 gui/helper/PreferenceFileDelegate.h \
284     echoes/EchoesSegment.h \
285     echoes/EchoesAnalysis.h \
286 haruneko24 64 echoes/EchoesInfo.h \
287     echoes/EchoesStyleModel.h \
288     echoes/EchoesQuery.h \
289 haruneko24 67 echoes/EchoesPhrase.h \
290 haruneko24 68 echoes/EchoesStyleGenerator.h \
291     view/helper/ControlCommand.h
292 haruneko24 6
293     FORMS += \
294 haruneko24 52 gui/EditorWindow.ui \
295 haruneko24 58 gui/TrackPreferenceDialog.ui \
296     gui/EditorPreferenceDialog.ui
297 haruneko24 6
298     RESOURCES += \
299     gui/EditorWindow.qrc \
300     gui/EditorWindow.qrc

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26