Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merged in patches for building grass support under windows kindly sub…
…mitted by Godofredo Contreras git-svn-id: http://svn.osgeo.org/qgis/trunk@6058 c8812cc2-4d05-0410-92ff-de0c093fc19c
- Loading branch information
timlinux
committed
Nov 8, 2006
1 parent
54bd4e0
commit 1414138
Showing
4 changed files
with
114 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
################################################################# | ||
# | ||
# 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=grassplugin | ||
TEMPLATE = lib | ||
#suffix debug to target if applicable | ||
CONFIG(debug, debug|release){ | ||
TARGET = $$member(TARGET, 0)-debug | ||
} | ||
|
||
LIBS += $${QGISCORELIBADD} | ||
LIBS += $${QGISGUILIBADD} | ||
LIBS += $${QGISPROJECTIONSELECTORLIBADD} | ||
LIBS += $${GRASSLIBADD} | ||
LIBS += $${PROJLIBADD} | ||
LIBS += $${GDALLIBADD} | ||
LIBS += $${QGISGRASSPROVIDERLIBADD} | ||
DESTDIR=$${QGISPLUGINDIR} | ||
QT += qt3support svg core gui xml network | ||
message("Building libs into $${DESTDIR}") | ||
|
||
CONFIG += qt dll thread debug rtti | ||
HEADERS += qgsgrassattributes.h \ | ||
qgsgrassbrowser.h \ | ||
qgsgrassedit.h \ | ||
qgsgrassedittools.h \ | ||
qgsgrassmapcalc.h \ | ||
qgsgrassmodel.h \ | ||
qgsgrassmodule.h \ | ||
qgsgrassnewmapset.h \ | ||
qgsgrassplugin.h \ | ||
qgsgrassregion.h \ | ||
qgsgrassselect.h \ | ||
qgsgrassshell.h \ | ||
qgsgrasstools.h \ | ||
qgsgrassutils.h | ||
|
||
FORMS += qgsgrassattributesbase.ui \ | ||
qgsgrasseditbase.ui \ | ||
qgsgrassmapcalcbase.ui \ | ||
qgsgrassmodulebase.ui \ | ||
qgsgrassnewmapsetbase.ui \ | ||
qgsgrassregionbase.ui \ | ||
qgsgrassselectbase.ui \ | ||
qgsgrassshellbase.ui | ||
|
||
SOURCES += qgsgrassattributes.cpp \ | ||
qgsgrassbrowser.cpp \ | ||
qgsgrassedit.cpp \ | ||
qgsgrassedittools.cpp \ | ||
qgsgrassmapcalc.cpp \ | ||
qgsgrassmodel.cpp \ | ||
qgsgrassmodule.cpp \ | ||
qgsgrassnewmapset.cpp \ | ||
qgsgrassplugin.cpp \ | ||
qgsgrassregion.cpp \ | ||
qgsgrassselect.cpp \ | ||
qgsgrassshell.cpp \ | ||
qgsgrasstools.cpp \ | ||
qgsgrassutils.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -12,6 +12,7 @@ SUBDIRS = delimited_text \ | ||
grid_maker \ | ||
north_arrow \ | ||
wfs \ | ||
grass \ | ||
copyright_label | ||
# gps_importer \ | ||
# spit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
################################################################# | ||
# | ||
# 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 provider | ||
# | ||
|
||
include(../../../settings.pro) | ||
TARGET=grassprovider | ||
TEMPLATE = lib | ||
#suffix debug to target if applicable | ||
CONFIG(debug, debug|release){ | ||
TARGET = $$member(TARGET, 0)-debug | ||
} | ||
|
||
#LIBS += $${GEOSLIBADD} | ||
LIBS += $${QGISCORELIBADD} | ||
LIBS += $${GRASSLIBADD} | ||
|
||
DESTDIR=$${QGISPROVIDERDIR} | ||
QT += qt3support svg core gui xml network | ||
message("Building libs into $${DESTDIR}") | ||
|
||
CONFIG += qt dll thread debug rtti | ||
HEADERS += qgsgrass.h \ | ||
qgsgrassprovider.h | ||
SOURCES += provider.cpp \ | ||
qgsgrass.cpp \ | ||
qgsgrassprovider.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters