-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build delimited text provider under windows
git-svn-id: http://svn.osgeo.org/qgis/trunk@5990 c8812cc2-4d05-0410-92ff-de0c093fc19c
- Loading branch information
timlinux
committed
Oct 21, 2006
1 parent
df7fe96
commit d4ec18c
Showing
2 changed files
with
32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,36 @@ | ||
#################################################################### | ||
# Qmake project file for QGIS data provider | ||
# This file is used by qmake to generate the Makefile for building | ||
# the QGIS delimited text data provider on Windows | ||
################################################################# | ||
# | ||
# 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 gui library - the app is built in a separate pro file | ||
# | ||
# delimitedtext.pro,v 1.1 2004/07/15 01:10:40 gsherman Exp | ||
#################################################################### | ||
|
||
include(../../../settings.pro) | ||
TARGET=delimitedtextprovider | ||
TEMPLATE = lib | ||
INCLUDEPATH += . $(GEOS)\include \ | ||
$(GDAL)\include | ||
LIBS += ..\..\src\libqgis.lib \ | ||
$(GEOS)\lib\geos.lib \ | ||
$(GDAL)\lib\gdal_i.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 += $${GDALLIBADD} | ||
LIBS += $${GEOSLIBADD} | ||
#LIBS += $${PROJLIBADD} | ||
LIBS += $${QGISCORELIBADD} | ||
LIBS += $${QGISGUILIBADD} | ||
LIBS += $${QGISPROJECTIONSELECTORLIBADD} | ||
DESTDIR=$${QGISPROVIDERDIR} | ||
QT += qt3support svg core gui xml network | ||
message("Building libs into $${DESTDIR}") | ||
|
||
# Input | ||
CONFIG += qt dll thread debug rtti | ||
HEADERS += qgsdelimitedtextprovider.h | ||
SOURCES += qgsdelimitedtextprovider.cpp \ | ||
..\..\src\qgsfeature.cpp \ | ||
..\..\src\qgsfield.cpp \ | ||
..\..\src\qgsrect.cpp \ | ||
..\..\src\qgsfeatureattribute.cpp \ | ||
..\..\src\qgspoint.cpp | ||
SOURCES += qgsdelimitedtextprovider.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