annotate rdf/rdf.pro @ 637:465f769ccad0

* More updates to build system, intended to support platforms both with and without pkg-config (though we really want to be able to switch pkg-config off)
author Chris Cannam
date Thu, 16 Sep 2010 14:40:52 +0100
parents c55795627490
children
rev   line source
Chris@439 1 TEMPLATE = lib
Chris@439 2
Chris@637 3 include(../config.pri)
Chris@439 4
Chris@439 5 CONFIG += sv staticlib qt thread warn_on stl rtti exceptions
Chris@439 6
Chris@439 7 TARGET = svrdf
Chris@439 8
Chris@439 9 DEPENDPATH += . ..
Chris@439 10 INCLUDEPATH += . ..
Chris@439 11 OBJECTS_DIR = tmp_obj
Chris@439 12 MOC_DIR = tmp_moc
Chris@439 13
Chris@439 14 # Input
Chris@439 15 HEADERS += PluginRDFDescription.h \
Chris@439 16 PluginRDFIndexer.h \
Chris@500 17 RDFExporter.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@500 24 RDFExporter.cpp \
Chris@498 25 RDFFeatureWriter.cpp \
Chris@439 26 RDFImporter.cpp \
Chris@439 27 RDFTransformFactory.cpp \
Chris@439 28 SimpleSPARQLQuery.cpp
Chris@439 29