Mercurial > hg > svcore
annotate rdf/rdf.pro @ 520:e340b2fb9471
* Make FileSource able to indicate its preferred content type (e.g.
application/rdf+xml in preference to text/html for rdf content)
* Temp directory on Windows -- make $HOME expand to homedrive+homepath
instead of user profile location (which may be networked)
author | Chris Cannam |
---|---|
date | Thu, 11 Dec 2008 15:18:10 +0000 |
parents | 83eae5239db6 |
children | ebb6ac65bccc |
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@500 | 18 RDFExporter.h \ |
Chris@498 | 19 RDFFeatureWriter.h \ |
Chris@439 | 20 RDFImporter.h \ |
Chris@439 | 21 RDFTransformFactory.h \ |
Chris@439 | 22 SimpleSPARQLQuery.h |
Chris@439 | 23 SOURCES += PluginRDFDescription.cpp \ |
Chris@439 | 24 PluginRDFIndexer.cpp \ |
Chris@500 | 25 RDFExporter.cpp \ |
Chris@498 | 26 RDFFeatureWriter.cpp \ |
Chris@439 | 27 RDFImporter.cpp \ |
Chris@439 | 28 RDFTransformFactory.cpp \ |
Chris@439 | 29 SimpleSPARQLQuery.cpp |
Chris@439 | 30 |