Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 21 deletions.
51 changes: 31 additions & 20 deletions src/providers/delimitedtext/delimitedtext.pro
@@ -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
2 changes: 1 addition & 1 deletion src/providers/providers.pro
Expand Up @@ -10,4 +10,4 @@
#
#################################################################
TEMPLATE = subdirs
SUBDIRS = ogr
SUBDIRS = ogr delimitedtext

0 comments on commit d4ec18c

Please sign in to comment.