Develop and Download Open Source Software

Browse Subversion Repository

Annotation of /trunk/StandCore.pro

Parent Directory Parent Directory | Revision Log Revision Log


Revision 22 - (hide annotations) (download)
Fri Oct 19 08:56:05 2012 UTC (11 years, 6 months ago) by haruneko24
File size: 6720 byte(s)
[synthesis] added; synthesizer class and so on.
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     math/dsp/tandem_ap.cpp \
49     math/dsp/synthesis_ap.cpp \
50     math/dsp/synthesis.cpp \
51     math/dsp/star.cpp \
52     math/dsp/platinum.cpp \
53     math/dsp/matlabfunctions.cpp \
54     math/dsp/fft.cpp \
55     math/dsp/dio.cpp \
56     delegate/TrackDelegate.cpp \
57     delegate/PitchDelegate.cpp \
58     delegate/NoteDelegate.cpp \
59     delegate/FileopenDelegate.cpp \
60     delegate/ComboboxDelegate.cpp \
61     utility/task/Task.cpp \
62     utility/task/Worker.cpp \
63     utility/envelope/VolumeComputer.cpp \
64     utility/envelope/F0Computer.cpp \
65     utility/envelope/Envelope.cpp \
66     utility/task/Manager.cpp \
67     gui/EditorWindow.cpp \
68     gui/EditorWidgetConstructor.cpp \
69     gui/EditorWidget.cpp \
70     gui/CorpusWidget.cpp \
71     gui/helper/WaveAnalysisTask.cpp \
72     gui/helper/TimeComputingTask.cpp \
73     gui/helper/EnvelopeComputingTask.cpp \
74     model/TreeItemModel.cpp \
75     model/TreeItem.cpp \
76     model/TrackItem.cpp \
77     model/SequenceModel.cpp \
78     model/PhonemeItem.cpp \
79     model/MeasureItem.cpp \
80     model/EventItem.cpp \
81     model/CorpusModel.cpp \
82     model/ControlItem.cpp \
83     model/xml/TreeXmlFactory.cpp \
84     model/xml/SequenceXmlFactory.cpp \
85     model/xml/CorpusXmlFactory.cpp \
86     model/importer/UtauCorpusImporter.cpp \
87     view/ViewSettings.cpp \
88     view/ViewArea.cpp \
89     view/TrackView.cpp \
90     view/TrackSelector.cpp \
91     view/TrackNameView.cpp \
92     view/SingerView.cpp \
93     view/PianoView.cpp \
94     view/MeasureView.cpp \
95     view/ControlView.cpp \
96     view/ControlSelector.cpp \
97     view/ControlArea.cpp \
98     view/AbstractPianoroll.cpp \
99     view/helper/PitchPainter.cpp \
100     echoes/Dictionary.cpp \
101     echoes/Data.cpp \
102     echoes/Alignment.cpp \
103     echoes/Analyzer.cpp \
104     math/dsp/common.cpp \
105     echoes/Echoes.cpp \
106     echoes/Computer.cpp \
107     echoes/helper/Helper.cpp \
108     delegate/command/LyricChangeCommand.cpp \
109 haruneko24 9 io/audio/AudioTrack.cpp \
110 haruneko24 12 io/audio/AudioStream.cpp \
111     io/audio/AudioChunk.cpp \
112 haruneko24 21 io/audio/AudioRenderer.cpp \
113     io/audio/WaveWriter.cpp \
114     io/audio/WaveReader.cpp \
115 haruneko24 22 io/audio/helper/AudioHelpr.cpp \
116     synthesis/Synthesizer.cpp \
117     synthesis/Vocoder.cpp \
118     synthesis/VocoderInfo.cpp
119 haruneko24 6
120     HEADERS += \
121     configure.h \
122     io/WaveBuffer.h \
123     io/RiffFile.h \
124     io/RiffChunk.h \
125     utility/Utility.h \
126     math/SmootMatching.h \
127     math/NormalDistribution.h \
128     math/Matrix.h \
129     math/MathSet.h \
130     math/GmmSet.h \
131     math/GmmData.h \
132     sequence/importer/SimpleImporter.h \
133     sequence/importer/Interpreter.h \
134     sequence/importer/Importer.h \
135     sequence/VibratoHandle.h \
136     sequence/Track.h \
137     sequence/Tempo.h \
138     sequence/SingerEvent.h \
139     sequence/Sequence.h \
140     sequence/NoteEvent.h \
141     sequence/LyricHandle.h \
142     sequence/ControlCurve.h \
143     sequence/AbstractHandle.h \
144     sequence/AbstractEvent.h \
145     sequence/importer/Exporter.h \
146     sequence/importer/VsqTextImporter.h \
147     sequence/Measure.h \
148     io/midi/MidiFile.h \
149     io/midi/MidiChunk.h \
150     io/midi/MidiEvent.h \
151     io/midi/MetaEvent.h \
152     io/midi/ExclusiveEvent.h \
153     sequence/importer/VsqImporter.h \
154     math/Pca.h \
155     io/utau/UtauPhoneme.h \
156     io/utau/UtauLibrary.h \
157     io/utau/PrefixMap.h \
158     io/utau/CharacterSettings.h \
159     utility/MessageHandler.h \
160     math/dsp/world.h \
161     math/dsp/fft.h \
162     delegate/TrackDelegate.h \
163     delegate/PitchDelegate.h \
164     delegate/NoteDelegate.h \
165     delegate/FileopenDelegate.h \
166     delegate/ComboboxDelegate.h \
167     utility/task/Task.h \
168     utility/task/Worker.h \
169     utility/envelope/VolumeComputer.h \
170     utility/envelope/F0Computer.h \
171     utility/envelope/EnvelopeComputer.h \
172     utility/envelope/Envelope.h \
173     utility/task/Manager.h \
174     gui/EditorWindow.h \
175     gui/EditorWidget.h \
176     gui/CorpusWidget.h \
177     gui/helper/WaveAnalysisTask.h \
178     gui/helper/EnvelopeComputingTask.h \
179     gui/helper/TimeComputingTask.h \
180     model/xml/TreeXmlFactory.h \
181     model/xml/SequenceXmlFactory.h \
182     model/xml/CorpusXmlFactory.h \
183     view/ViewSettings.h \
184     view/ViewArea.h \
185     view/TrackView.h \
186     view/TrackSelector.h \
187     view/TrackNameView.h \
188     view/SingerView.h \
189     view/PianoView.h \
190     view/MeasureView.h \
191     view/ControlView.h \
192     view/ControlSelector.h \
193     view/ControlArea.h \
194     view/AbstractPianoroll.h \
195     view/helper/PitchPainter.h \
196     model/TreeItemModel.h \
197     model/TreeItem.h \
198     model/TrackItem.h \
199     model/SequenceModel.h \
200     model/PhonemeItem.h \
201     model/MeasureItem.h \
202     model/EventItem.h \
203     model/CorpusModel.h \
204     model/ControlItem.h \
205     echoes/Dictionary.h \
206     echoes/Data.h \
207     echoes/Alignment.h \
208     echoes/Analyzer.h \
209     echoes/Computer.h \
210     echoes/Echoes.h \
211     utility/ControlPoint.h \
212     echoes/helper/Helper.h \
213     delegate/command/LyricChangeCommand.h \
214 haruneko24 9 io/audio/AudioTrack.h \
215 haruneko24 12 io/audio/AudioStream.h \
216     io/audio/AudioChunk.h \
217 haruneko24 21 io/audio/AudioRenderer.h \
218     io/audio/ChunkReader.h \
219     io/audio/ChunkWriter.h \
220     io/audio/WaveWriter.h \
221     io/audio/WaveReader.h \
222 haruneko24 22 io/audio/helper/AudioHelper.h \
223     synthesis/Synthesizer.h \
224     synthesis/Vocoder.h \
225     synthesis/VocoderInfo.h \
226     synthesis/PhraseData.h
227 haruneko24 6
228     FORMS += \
229     gui/EditorWindow.ui
230    
231     RESOURCES += \
232     gui/EditorWindow.qrc \
233     gui/EditorWindow.qrc

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