Mercurial > hg > svcore
comparison plugin/plugin.pro @ 388:370aa9714ef5
* Move plugin/transform to plain transform. This way transform can depend on
model and GUI classes, but plugin doesn't have to.
author | Chris Cannam |
---|---|
date | Wed, 12 Mar 2008 18:02:17 +0000 |
parents | d7c41483af8f |
children | ebb6ac65bccc |
comparison
equal
deleted
inserted
replaced
387:7aa1de571880 | 388:370aa9714ef5 |
---|---|
3 SV_UNIT_PACKAGES = vamp vamp-hostsdk lrdf raptor | 3 SV_UNIT_PACKAGES = vamp vamp-hostsdk lrdf raptor |
4 load(../sv.prf) | 4 load(../sv.prf) |
5 | 5 |
6 CONFIG += sv staticlib qt thread warn_on stl rtti exceptions | 6 CONFIG += sv staticlib qt thread warn_on stl rtti exceptions |
7 QT += xml | 7 QT += xml |
8 QT -= gui | |
8 | 9 |
9 TARGET = svplugin | 10 TARGET = svplugin |
10 | 11 |
11 # Doesn't work with this library, which contains C99 as well as C++ | 12 # Doesn't work with this library, which contains C99 as well as C++ |
12 PRECOMPILED_HEADER = | 13 PRECOMPILED_HEADER = |
13 | 14 |
14 DEPENDPATH += . .. api plugins api/alsa api/alsa/sound transform | 15 DEPENDPATH += . .. api plugins api/alsa api/alsa/sound |
15 INCLUDEPATH += . .. api api/alsa plugins api/alsa/sound transform | 16 INCLUDEPATH += . .. api api/alsa plugins api/alsa/sound |
16 OBJECTS_DIR = tmp_obj | 17 OBJECTS_DIR = tmp_obj |
17 MOC_DIR = tmp_moc | 18 MOC_DIR = tmp_moc |
18 | 19 |
19 # Input | 20 # Input |
20 HEADERS += DSSIPluginFactory.h \ | 21 HEADERS += DSSIPluginFactory.h \ |
32 api/alsa/asoundef.h \ | 33 api/alsa/asoundef.h \ |
33 api/alsa/asoundlib.h \ | 34 api/alsa/asoundlib.h \ |
34 api/alsa/seq.h \ | 35 api/alsa/seq.h \ |
35 api/alsa/seq_event.h \ | 36 api/alsa/seq_event.h \ |
36 api/alsa/seq_midi_event.h \ | 37 api/alsa/seq_midi_event.h \ |
37 api/alsa/sound/asequencer.h \ | 38 api/alsa/sound/asequencer.h |
38 transform/FeatureExtractionModelTransformer.h \ | |
39 transform/RealTimeEffectModelTransformer.h \ | |
40 transform/Transform.h \ | |
41 transform/TransformDescription.h \ | |
42 transform/TransformFactory.h \ | |
43 transform/ModelTransformer.h \ | |
44 transform/ModelTransformerFactory.h | |
45 SOURCES += DSSIPluginFactory.cpp \ | 39 SOURCES += DSSIPluginFactory.cpp \ |
46 DSSIPluginInstance.cpp \ | 40 DSSIPluginInstance.cpp \ |
47 FeatureExtractionPluginFactory.cpp \ | 41 FeatureExtractionPluginFactory.cpp \ |
48 LADSPAPluginFactory.cpp \ | 42 LADSPAPluginFactory.cpp \ |
49 LADSPAPluginInstance.cpp \ | 43 LADSPAPluginInstance.cpp \ |
50 PluginIdentifier.cpp \ | 44 PluginIdentifier.cpp \ |
51 PluginXml.cpp \ | 45 PluginXml.cpp \ |
52 RealTimePluginFactory.cpp \ | 46 RealTimePluginFactory.cpp \ |
53 RealTimePluginInstance.cpp \ | 47 RealTimePluginInstance.cpp \ |
54 api/dssi_alsa_compat.c \ | 48 api/dssi_alsa_compat.c \ |
55 plugins/SamplePlayer.cpp \ | 49 plugins/SamplePlayer.cpp |
56 transform/FeatureExtractionModelTransformer.cpp \ | 50 |
57 transform/RealTimeEffectModelTransformer.cpp \ | |
58 transform/Transform.cpp \ | |
59 transform/TransformFactory.cpp \ | |
60 transform/ModelTransformer.cpp \ | |
61 transform/ModelTransformerFactory.cpp |