Mercurial > hg > svcore
annotate rdf/rdf.pro @ 449:a75edaa08d28
* Support importing features from RDF whose times are intervals rather
than only instants; import them into region or note models. Sadly
this makes RDF import much, much slower, because we need to work around
Rasqal's single-OPTIONAL limitation by repeatedly querying each feature
for time and range.
* Add segmentation view to region layer, and display label texts
author | Chris Cannam |
---|---|
date | Tue, 07 Oct 2008 12:42:17 +0000 |
parents | 5746c559af15 |
children | 3ffce691c9bf |
rev | line source |
---|---|
Chris@439 | 1 TEMPLATE = lib |
Chris@439 | 2 |
Chris@440 | 3 SV_UNIT_PACKAGES = rasqal raptor |
Chris@439 | 4 load(../sv.prf) |
Chris@439 | 5 |
Chris@439 | 6 CONFIG += sv staticlib qt thread warn_on stl rtti exceptions |
Chris@439 | 7 |
Chris@439 | 8 TARGET = svrdf |
Chris@439 | 9 |
Chris@439 | 10 DEPENDPATH += . .. |
Chris@439 | 11 INCLUDEPATH += . .. |
Chris@439 | 12 OBJECTS_DIR = tmp_obj |
Chris@439 | 13 MOC_DIR = tmp_moc |
Chris@439 | 14 |
Chris@439 | 15 # Input |
Chris@439 | 16 HEADERS += PluginRDFDescription.h \ |
Chris@439 | 17 PluginRDFIndexer.h \ |
Chris@439 | 18 RDFImporter.h \ |
Chris@439 | 19 RDFTransformFactory.h \ |
Chris@439 | 20 SimpleSPARQLQuery.h |
Chris@439 | 21 SOURCES += PluginRDFDescription.cpp \ |
Chris@439 | 22 PluginRDFIndexer.cpp \ |
Chris@439 | 23 RDFImporter.cpp \ |
Chris@439 | 24 RDFTransformFactory.cpp \ |
Chris@439 | 25 SimpleSPARQLQuery.cpp |
Chris@439 | 26 |