|
| 1 | +################################################################# |
| 2 | +# |
| 3 | +# QMAKE Project File for Quantum GIS |
| 4 | +# |
| 5 | +# Tim Sutton 2006 |
| 6 | +# |
| 7 | +# NOTE: Do not place any hard coded external paths in this file |
| 8 | +# all libs and includes should be specified in settings.pro |
| 9 | +# in the top level qgis directory. |
| 10 | +# |
| 11 | +################################################################# |
| 12 | + |
| 13 | +# |
| 14 | +# This file builds the wfs plugin |
| 15 | +# |
| 16 | + |
| 17 | +include(../../../settings.pro) |
| 18 | +TARGET=grassplugin |
| 19 | +TEMPLATE = lib |
| 20 | +#suffix debug to target if applicable |
| 21 | +CONFIG(debug, debug|release){ |
| 22 | + TARGET = $$member(TARGET, 0)-debug |
| 23 | +} |
| 24 | + |
| 25 | +LIBS += $${QGISCORELIBADD} |
| 26 | +LIBS += $${QGISGUILIBADD} |
| 27 | +LIBS += $${QGISPROJECTIONSELECTORLIBADD} |
| 28 | +LIBS += $${GRASSLIBADD} |
| 29 | +LIBS += $${PROJLIBADD} |
| 30 | +LIBS += $${GDALLIBADD} |
| 31 | +LIBS += $${QGISGRASSPROVIDERLIBADD} |
| 32 | +DESTDIR=$${QGISPLUGINDIR} |
| 33 | +QT += qt3support svg core gui xml network |
| 34 | +message("Building libs into $${DESTDIR}") |
| 35 | + |
| 36 | +CONFIG += qt dll thread debug rtti |
| 37 | +HEADERS += qgsgrassattributes.h \ |
| 38 | + qgsgrassbrowser.h \ |
| 39 | + qgsgrassedit.h \ |
| 40 | + qgsgrassedittools.h \ |
| 41 | + qgsgrassmapcalc.h \ |
| 42 | + qgsgrassmodel.h \ |
| 43 | + qgsgrassmodule.h \ |
| 44 | + qgsgrassnewmapset.h \ |
| 45 | + qgsgrassplugin.h \ |
| 46 | + qgsgrassregion.h \ |
| 47 | + qgsgrassselect.h \ |
| 48 | + qgsgrassshell.h \ |
| 49 | + qgsgrasstools.h \ |
| 50 | + qgsgrassutils.h |
| 51 | + |
| 52 | +FORMS += qgsgrassattributesbase.ui \ |
| 53 | + qgsgrasseditbase.ui \ |
| 54 | + qgsgrassmapcalcbase.ui \ |
| 55 | + qgsgrassmodulebase.ui \ |
| 56 | + qgsgrassnewmapsetbase.ui \ |
| 57 | + qgsgrassregionbase.ui \ |
| 58 | + qgsgrassselectbase.ui \ |
| 59 | + qgsgrassshellbase.ui |
| 60 | + |
| 61 | +SOURCES += qgsgrassattributes.cpp \ |
| 62 | + qgsgrassbrowser.cpp \ |
| 63 | + qgsgrassedit.cpp \ |
| 64 | + qgsgrassedittools.cpp \ |
| 65 | + qgsgrassmapcalc.cpp \ |
| 66 | + qgsgrassmodel.cpp \ |
| 67 | + qgsgrassmodule.cpp \ |
| 68 | + qgsgrassnewmapset.cpp \ |
| 69 | + qgsgrassplugin.cpp \ |
| 70 | + qgsgrassregion.cpp \ |
| 71 | + qgsgrassselect.cpp \ |
| 72 | + qgsgrassshell.cpp \ |
| 73 | + qgsgrasstools.cpp \ |
| 74 | + qgsgrassutils.cpp |
0 commit comments