annotate plugin/plugin.pro @ 295:a2dc34ce146a

* Window should be centred on its nominal time. I'm not sure what the reasoning was behind the previous formulations of these two lines.
author Chris Cannam
date Thu, 06 Sep 2007 15:14:47 +0000
parents 9c85517ff0f5
children 32e50b620a6c
rev   line source
Chris@150 1 TEMPLATE = lib
Chris@150 2
Chris@244 3 SV_UNIT_PACKAGES = vamp vamp-hostsdk lrdf raptor
Chris@150 4 load(../sv.prf)
Chris@150 5
Chris@150 6 CONFIG += sv staticlib qt thread warn_on stl rtti exceptions
Chris@150 7 QT += xml
Chris@150 8
Chris@150 9 TARGET = svplugin
Chris@150 10
Chris@256 11 # Doesn't work with this library, which contains C99 as well as C++
Chris@256 12 PRECOMPILED_HEADER =
Chris@256 13
Chris@150 14 DEPENDPATH += . .. api plugins api/alsa api/alsa/sound
Chris@150 15 INCLUDEPATH += . .. api api/alsa plugins api/alsa/sound
Chris@150 16 OBJECTS_DIR = tmp_obj
Chris@150 17 MOC_DIR = tmp_moc
Chris@150 18
Chris@150 19 # Input
Chris@150 20 HEADERS += DSSIPluginFactory.h \
Chris@150 21 DSSIPluginInstance.h \
Chris@150 22 FeatureExtractionPluginFactory.h \
Chris@150 23 LADSPAPluginFactory.h \
Chris@150 24 LADSPAPluginInstance.h \
Chris@150 25 PluginIdentifier.h \
Chris@150 26 PluginXml.h \
Chris@150 27 RealTimePluginFactory.h \
Chris@150 28 RealTimePluginInstance.h \
Chris@150 29 api/dssi.h \
Chris@150 30 api/ladspa.h \
Chris@150 31 plugins/SamplePlayer.h \
Chris@150 32 api/alsa/asoundef.h \
Chris@150 33 api/alsa/asoundlib.h \
Chris@150 34 api/alsa/seq.h \
Chris@150 35 api/alsa/seq_event.h \
Chris@150 36 api/alsa/seq_midi_event.h \
Chris@150 37 api/alsa/sound/asequencer.h
Chris@150 38 SOURCES += DSSIPluginFactory.cpp \
Chris@150 39 DSSIPluginInstance.cpp \
Chris@150 40 FeatureExtractionPluginFactory.cpp \
Chris@150 41 LADSPAPluginFactory.cpp \
Chris@150 42 LADSPAPluginInstance.cpp \
Chris@150 43 PluginIdentifier.cpp \
Chris@150 44 PluginXml.cpp \
Chris@150 45 RealTimePluginFactory.cpp \
Chris@150 46 RealTimePluginInstance.cpp \
Chris@150 47 api/dssi_alsa_compat.c \
Chris@150 48 plugins/SamplePlayer.cpp