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
Windows build updates - includes patches submitted by godofredo contr…
…eras git-svn-id: http://svn.osgeo.org/qgis/trunk@6017 c8812cc2-4d05-0410-92ff-de0c093fc19c
- Loading branch information
timlinux
committed
Oct 27, 2006
1 parent
539e9cf
commit 163b84b
Showing
7 changed files
with
110 additions
and
21 deletions.
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
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
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 |
---|---|---|
@@ -1,24 +1,36 @@ | ||
#################################################################### | ||
# Qmake project file for QGIS plugin | ||
# This file is used by qmake to generate the Makefiles for building | ||
# the QGIS copyright plugin on Windows | ||
################################################################# | ||
# | ||
# copyright_label.pro,v 1.1 2004/06/23 04:15:54 gsherman Exp | ||
#################################################################### | ||
# 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 copyright label provider | ||
# | ||
|
||
include(../../../settings.pro) | ||
TARGET=copyrightlabelprovider | ||
TEMPLATE = lib | ||
INCLUDEPATH += . ..\..\src \ | ||
$(GEOS)\include | ||
LIBS += ..\..\src\libqgis.lib \ | ||
$(GDAL)\lib\gdal_i.lib \ | ||
$(GEOS)\lib\geos.lib \ | ||
$(POSTGRESQL)\src\interfaces\libpq\Release\libpq.lib | ||
CONFIG += qt dll thread | ||
DLLDESTDIR= ..\..\win_build\lib\qgis | ||
#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}") | ||
|
||
# Input | ||
CONFIG += qt dll thread debug rtti | ||
HEADERS += plugin.h \ | ||
plugingui.h \ | ||
pluginguibase.ui.h | ||
INTERFACES += pluginguibase.ui | ||
plugingui.h | ||
FORMS += pluginguibase.ui | ||
SOURCES += plugin.cpp \ | ||
plugingui.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
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,36 @@ | ||
################################################################# | ||
# | ||
# 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}") | ||
|
||
CONFIG += qt dll thread debug rtti | ||
HEADERS += qgswfsplugin.h \ | ||
qgswfssourceselect.h | ||
FORMS += qgswfssourceselectbase.ui | ||
SOURCES += qgswfsplugin.cpp \ | ||
qgswfssourceselect.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
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,34 @@ | ||
################################################################# | ||
# | ||
# 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=wfsprovider | ||
TEMPLATE = lib | ||
#suffix debug to target if applicable | ||
CONFIG(debug, debug|release){ | ||
TARGET = $$member(TARGET, 0)-debug | ||
} | ||
|
||
LIBS += $${GEOSLIBADD} | ||
LIBS += $${QGISCORELIBADD} | ||
|
||
DESTDIR=$${QGISPROVIDERDIR} | ||
QT += qt3support svg core gui xml network | ||
message("Building libs into $${DESTDIR}") | ||
|
||
CONFIG += qt dll thread debug rtti | ||
HEADERS += qgswfsprovider.h | ||
SOURCES += qgswfsprovider.cpp |