mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
21 lines
633 B
Makefile
21 lines
633 B
Makefile
## $Id$
|
|
|
|
INCLUDES = -I../../src
|
|
|
|
plugindir = ${pkglibdir}
|
|
plugin_LTLIBRARIES = delimitedtextprovider.la
|
|
|
|
delimitedtextprovider_la_SOURCES = qgsdelimitedtextprovider.cpp \
|
|
../../src/qgsfeature.cpp \
|
|
../../src/qgsfeatureattribute.cpp \
|
|
../../src/qgsrect.cpp \
|
|
../../src/qgspoint.cpp \
|
|
../../src/qgsfield.cpp
|
|
|
|
|
|
delimitedtextprovider_la_LIBADD = $(QT_LDADD) $(GDAL_LIB) $(GEOS_LDADD)
|
|
delimitedtextprovider_la_LDFLAGS = -avoid-version -module
|
|
delimitedtextprovider_la_CXXFLAGS = $(GDAL_CFLAGS) $(EXTRA_CXXFLAGS) $(QT_CXXFLAGS) $(DEBUG_QGIS) $(GEOS_CFLAGS)
|
|
|
|
EXTRA_DIST = qgsdelimitedtextprovider.h
|