mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
26 lines
880 B
Prolog
26 lines
880 B
Prolog
####################################################################
|
|
# 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
|
|
#
|
|
# delimitedtext.pro,v 1.1 2004/07/15 01:10:40 gsherman Exp
|
|
####################################################################
|
|
|
|
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
|
|
|
|
# Input
|
|
HEADERS += qgsdelimitedtextprovider.h
|
|
SOURCES += qgsdelimitedtextprovider.cpp \
|
|
..\..\src\qgsfeature.cpp \
|
|
..\..\src\qgsfield.cpp \
|
|
..\..\src\qgsrect.cpp \
|
|
..\..\src\qgsfeatureattribute.cpp \
|
|
..\..\src\qgspoint.cpp
|