mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
16 lines
594 B
Makefile
16 lines
594 B
Makefile
|
plugindir = ${pkglibdir}
|
||
|
plugin_LTLIBRARIES = delimitedtextprovider.la
|
||
|
|
||
|
delimitedtextprovider_la_SOURCES = qgsdelimitedtextprovider.cpp \
|
||
|
qgsdelimitedtextprovider.h \
|
||
|
../../src/qgsfeature.cpp \
|
||
|
../../src/qgsfeatureattribute.cpp \
|
||
|
../../src/qgsrect.cpp \
|
||
|
../../src/qgspoint.cpp \
|
||
|
../../src/qgsfield.cpp
|
||
|
|
||
|
AM_CXXFLAGS := $(CXXFLAGS) $(GDAL_CFLAGS) $(EXTRA_CXXFLAGS) $(QT_CXXFLAGS) $(DEBUG_QGIS)
|
||
|
|
||
|
delimitedtextprovider_la_LIBADD = $(QT_LDADD) $(GDAL_LIB)
|
||
|
delimitedtextprovider_la_LDFLAGS = -avoid-version -module
|