Mercurial > hg > sonic-visualiser
comparison sv.pro @ 1:40116f709d3b
* Reorganising code base. This revision probably should compile once more.
author | Chris Cannam |
---|---|
date | Mon, 31 Jul 2006 14:05:22 +0000 |
parents | |
children | 42a78f0e8fe2 |
comparison
equal
deleted
inserted
replaced
0:cd5d7ff8ef38 | 1:40116f709d3b |
---|---|
1 | |
2 TEMPLATE = app | |
3 | |
4 SV_UNIT_PACKAGES = fftw3f samplerate jack portaudio mad oggz fishsound lrdf raptor sndfile | |
5 load(../sv.prf) | |
6 | |
7 CONFIG += sv qt thread warn_on stl rtti exceptions | |
8 QT += xml | |
9 | |
10 TARGET = sonic-visualiser | |
11 | |
12 DEPENDPATH += . .. audioio document i18n main transform | |
13 INCLUDEPATH += . .. audioio document transform main | |
14 LIBPATH = ../view ../layer ../data ../widgets ../plugin ../base ../system $$LIBPATH | |
15 LIBS = -lsvview -lsvlayer -lsvdata -lsvwidgets -lsvplugin -lsvbase -lsvsystem $$LIBS | |
16 | |
17 OBJECTS_DIR = tmp_obj | |
18 MOC_DIR = tmp_moc | |
19 | |
20 # Input | |
21 HEADERS += audioio/AudioCallbackPlaySource.h \ | |
22 audioio/AudioCallbackPlayTarget.h \ | |
23 audioio/AudioCoreAudioTarget.h \ | |
24 audioio/AudioGenerator.h \ | |
25 audioio/AudioJACKTarget.h \ | |
26 audioio/AudioPortAudioTarget.h \ | |
27 audioio/AudioTargetFactory.h \ | |
28 audioio/IntegerTimeStretcher.h \ | |
29 document/Document.h \ | |
30 document/SVFileReader.h \ | |
31 main/MainWindow.h \ | |
32 main/PreferencesDialog.h \ | |
33 transform/FeatureExtractionPluginTransform.h \ | |
34 transform/RealTimePluginTransform.h \ | |
35 transform/Transform.h \ | |
36 transform/TransformFactory.h | |
37 SOURCES += audioio/AudioCallbackPlaySource.cpp \ | |
38 audioio/AudioCallbackPlayTarget.cpp \ | |
39 audioio/AudioCoreAudioTarget.cpp \ | |
40 audioio/AudioGenerator.cpp \ | |
41 audioio/AudioJACKTarget.cpp \ | |
42 audioio/AudioPortAudioTarget.cpp \ | |
43 audioio/AudioTargetFactory.cpp \ | |
44 audioio/IntegerTimeStretcher.cpp \ | |
45 document/Document.cpp \ | |
46 document/SVFileReader.cpp \ | |
47 main/main.cpp \ | |
48 main/MainWindow.cpp \ | |
49 main/PreferencesDialog.cpp \ | |
50 transform/FeatureExtractionPluginTransform.cpp \ | |
51 transform/RealTimePluginTransform.cpp \ | |
52 transform/Transform.cpp \ | |
53 transform/TransformFactory.cpp | |
54 RESOURCES += sonic-visualiser.qrc | |
55 TRANSLATIONS += i18n/sonic-visualiser_ru.ts |