################################################################# # # QMAKE Project File for Quantum GIS # # Tim Sutton 2006 # # NOTE: Do not place any hard coded external paths in this file # all libs and includes should be specified in settings.pro # in the top level qgis directory. # ################################################################# # # This file builds the wfs plugin # include(../../../settings.pro) TARGET=wfsplugin TEMPLATE = lib #suffix debug to target if applicable CONFIG(debug, debug|release){ TARGET = $$member(TARGET, 0)-debug } LIBS += $${QGISCORELIBADD} LIBS += $${QGISGUILIBADD} DESTDIR=$${QGISPLUGINDIR} QT += qt3support svg core gui xml network message("Building libs into $${DESTDIR}") INCLUDEPATH += $${GEOSINCADD} HEADERS += qgswfsplugin.h \ qgswfssourceselect.h FORMS += qgswfssourceselectbase.ui SOURCES += qgswfsplugin.cpp \ qgswfssourceselect.cpp