view transform/transform.pro @ 489:82ab61fa9223

* Reorganise our sparql queries on the basis that Redland must be available, not only optional. So for anything querying the pool of data about plugins, we use a single datastore and model which is initialised at the outset by PluginRDFIndexer and then queried directly; for anything that "reads from a file" (e.g. loading annotations) we query directly using Rasqal, going to the datastore when we need additional plugin-related information. This may improve performance, but mostly it simplifies the code and fixes a serious issue with RDF import in the previous versions (namely that multiple sequential RDF imports would end up sharing the same RDF data pool!)
author Chris Cannam
date Fri, 21 Nov 2008 16:12:29 +0000
parents bf1311518f80
children fdf5930b7ccc
line wrap: on
line source
TEMPLATE = lib

SV_UNIT_PACKAGES = vamp vamp-hostsdk
load(../sv.prf)

CONFIG += sv staticlib qt thread warn_on stl rtti exceptions
QT += xml

TARGET = svtransform

DEPENDPATH += . .. 
INCLUDEPATH += . ..
OBJECTS_DIR = tmp_obj
MOC_DIR = tmp_moc

# Input
HEADERS += FeatureExtractionModelTransformer.h \
           RealTimeEffectModelTransformer.h \
           Transform.h \
           TransformDescription.h \
           TransformFactory.h \
           ModelTransformer.h \
           ModelTransformerFactory.h
SOURCES += FeatureExtractionModelTransformer.cpp \
           RealTimeEffectModelTransformer.cpp \
           Transform.cpp \
           TransformFactory.cpp \
           ModelTransformer.cpp \
           ModelTransformerFactory.cpp