Develop and Download Open Source Software

Browse Subversion Repository

Annotation of /trunk/StandCore.pro

Parent Directory Parent Directory | Revision Log Revision Log


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

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