Develop and Download Open Source Software

Browse Subversion Repository

Annotation of /trunk/StandCore.pro

Parent Directory Parent Directory | Revision Log Revision Log


Revision 10 - (hide annotations) (download)
Thu Oct 11 19:41:13 2012 UTC (11 years, 6 months ago) by haruneko24
File size: 6125 byte(s)
[AudioStream] mix up AudioDevice and AudioMixer
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 10 io/audio/AudioStream.cpp
111 haruneko24 6
112     HEADERS += \
113     configure.h \
114     io/WaveBuffer.h \
115     io/RiffFile.h \
116     io/RiffChunk.h \
117     utility/Utility.h \
118     math/SmootMatching.h \
119     math/NormalDistribution.h \
120     math/Matrix.h \
121     math/MathSet.h \
122     math/GmmSet.h \
123     math/GmmData.h \
124     sequence/importer/SimpleImporter.h \
125     sequence/importer/Interpreter.h \
126     sequence/importer/Importer.h \
127     sequence/VibratoHandle.h \
128     sequence/Track.h \
129     sequence/Tempo.h \
130     sequence/SingerEvent.h \
131     sequence/Sequence.h \
132     sequence/NoteEvent.h \
133     sequence/LyricHandle.h \
134     sequence/ControlCurve.h \
135     sequence/AbstractHandle.h \
136     sequence/AbstractEvent.h \
137     sequence/importer/Exporter.h \
138     sequence/importer/VsqTextImporter.h \
139     sequence/Measure.h \
140     io/midi/MidiFile.h \
141     io/midi/MidiChunk.h \
142     io/midi/MidiEvent.h \
143     io/midi/MetaEvent.h \
144     io/midi/ExclusiveEvent.h \
145     sequence/importer/VsqImporter.h \
146     math/Pca.h \
147     io/utau/UtauPhoneme.h \
148     io/utau/UtauLibrary.h \
149     io/utau/PrefixMap.h \
150     io/utau/CharacterSettings.h \
151     utility/MessageHandler.h \
152     math/dsp/world.h \
153     math/dsp/fft.h \
154     delegate/TrackDelegate.h \
155     delegate/PitchDelegate.h \
156     delegate/NoteDelegate.h \
157     delegate/FileopenDelegate.h \
158     delegate/ComboboxDelegate.h \
159     utility/task/Task.h \
160     utility/task/Worker.h \
161     utility/envelope/VolumeComputer.h \
162     utility/envelope/F0Computer.h \
163     utility/envelope/EnvelopeComputer.h \
164     utility/envelope/Envelope.h \
165     utility/task/Manager.h \
166     gui/EditorWindow.h \
167     gui/EditorWidget.h \
168     gui/CorpusWidget.h \
169     gui/helper/WaveAnalysisTask.h \
170     gui/helper/EnvelopeComputingTask.h \
171     gui/helper/TimeComputingTask.h \
172     model/xml/TreeXmlFactory.h \
173     model/xml/SequenceXmlFactory.h \
174     model/xml/CorpusXmlFactory.h \
175     view/ViewSettings.h \
176     view/ViewArea.h \
177     view/TrackView.h \
178     view/TrackSelector.h \
179     view/TrackNameView.h \
180     view/SingerView.h \
181     view/PianoView.h \
182     view/MeasureView.h \
183     view/ControlView.h \
184     view/ControlSelector.h \
185     view/ControlArea.h \
186     view/AbstractPianoroll.h \
187     view/helper/PitchPainter.h \
188     model/TreeItemModel.h \
189     model/TreeItem.h \
190     model/TrackItem.h \
191     model/SequenceModel.h \
192     model/PhonemeItem.h \
193     model/MeasureItem.h \
194     model/EventItem.h \
195     model/CorpusModel.h \
196     model/ControlItem.h \
197     echoes/Dictionary.h \
198     echoes/Data.h \
199     echoes/Alignment.h \
200     echoes/Analyzer.h \
201     echoes/Computer.h \
202     echoes/Echoes.h \
203     utility/ControlPoint.h \
204     echoes/helper/Helper.h \
205     delegate/command/LyricChangeCommand.h \
206 haruneko24 9 io/audio/AudioTrack.h \
207 haruneko24 10 io/audio/AudioStream.h
208 haruneko24 6
209     FORMS += \
210     gui/EditorWindow.ui
211    
212     RESOURCES += \
213     gui/EditorWindow.qrc \
214     gui/EditorWindow.qrc

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