2004-07-15 01:10:40 +00:00
|
|
|
####################################################################
|
|
|
|
# Qmake project file for QGIS data provider
|
|
|
|
# This file is used by qmake to generate the Makefile for building
|
|
|
|
# the QGIS OGR data provider on Windows
|
|
|
|
#
|
2004-08-14 01:10:09 +00:00
|
|
|
# ogr.pro,v 1.2 2004/08/14 01:10:09 timlinux Exp
|
2004-07-15 01:10:40 +00:00
|
|
|
####################################################################
|
|
|
|
|
2004-11-11 05:36:15 +00:00
|
|
|
#################
|
|
|
|
# GEOS Notes #
|
|
|
|
##########################################################################
|
|
|
|
# Geos support is currenlty provided by a custom compiled library.
|
|
|
|
# The library is compiled with vc++ and statically linked with the
|
|
|
|
# ogr provider. A dll may be supplied at a later date. GEOS source
|
|
|
|
# used in creating the library is available at geos.refractions.net.
|
|
|
|
# To compile the windows version, set the GEOS environment variable
|
|
|
|
# to point to the directory containing the include and lib subdirectories.
|
|
|
|
# The headers/lib can be downloaded from http://qgis.org/win32_geos.zip
|
|
|
|
###########################################################################
|
|
|
|
|
2004-07-15 01:10:40 +00:00
|
|
|
TEMPLATE = lib
|
2004-11-11 05:36:15 +00:00
|
|
|
INCLUDEPATH += . $(GDAL)\include \
|
|
|
|
$(GEOS)\include \
|
|
|
|
$(QTDIR)\include
|
|
|
|
LIBS += $(GDAL)\lib\gdal_i.lib \
|
|
|
|
..\..\src\libqgis.lib \
|
|
|
|
$(GEOS)\lib\geos.lib
|
2004-11-16 04:47:35 +00:00
|
|
|
CONFIG += qt dll thread debug rtti
|
2004-11-26 18:22:42 +00:00
|
|
|
#CONFIG += qt dll thread rtti
|
2004-07-15 01:10:40 +00:00
|
|
|
DLLDESTDIR= ..\..\win_build\lib\qgis
|
2004-11-11 05:36:15 +00:00
|
|
|
#DEFINES += NOWIN32GEOS
|
2004-07-15 01:10:40 +00:00
|
|
|
# Input
|
|
|
|
HEADERS += qgsshapefileprovider.h
|
|
|
|
SOURCES += qgsshapefileprovider.cpp \
|
|
|
|
..\..\src\qgsfeature.cpp \
|
|
|
|
..\..\src\qgsfield.cpp \
|
|
|
|
..\..\src\qgsrect.cpp \
|
|
|
|
..\..\src\qgsfeatureattribute.cpp \
|
|
|
|
..\..\src\qgspoint.cpp
|