Mercurial > hg > svcore
annotate rdf/rdf.pro @ 498:fdf5930b7ccc
* Bring FeatureWriter and RDFFeatureWriter into the fold (from Runner)
so that we can use them to export features from SV as well
author | Chris Cannam |
---|---|
date | Fri, 28 Nov 2008 13:47:11 +0000 |
parents | 3ffce691c9bf |
children | 83eae5239db6 |
rev | line source |
---|---|
Chris@439 | 1 TEMPLATE = lib |
Chris@439 | 2 |
Chris@480 | 3 SV_UNIT_PACKAGES = redland 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@498 | 18 RDFFeatureWriter.h \ |
Chris@439 | 19 RDFImporter.h \ |
Chris@439 | 20 RDFTransformFactory.h \ |
Chris@439 | 21 SimpleSPARQLQuery.h |
Chris@439 | 22 SOURCES += PluginRDFDescription.cpp \ |
Chris@439 | 23 PluginRDFIndexer.cpp \ |
Chris@498 | 24 RDFFeatureWriter.cpp \ |
Chris@439 | 25 RDFImporter.cpp \ |
Chris@439 | 26 RDFTransformFactory.cpp \ |
Chris@439 | 27 SimpleSPARQLQuery.cpp |
Chris@439 | 28 |