mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
Also made QgsRasterLayer more robust in light of files with poor "no data" and "min/max" value information. Note that this hasn't been tested with windows versions. git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@2156 c8812cc2-4d05-0410-92ff-de0c093fc19c
19 lines
553 B
Makefile
19 lines
553 B
Makefile
INCLUDES = -I../../src
|
|
|
|
plugindir = ${pkglibdir}
|
|
plugin_LTLIBRARIES = ogrprovider.la
|
|
|
|
ogrprovider_la_SOURCES = qgsshapefileprovider.cpp \
|
|
qgsshapefileprovider.h \
|
|
../../src/qgsfeature.cpp \
|
|
../../src/qgsfeatureattribute.cpp \
|
|
../../src/qgsrect.cpp \
|
|
../../src/qgspoint.cpp \
|
|
../../src/qgsfield.cpp
|
|
|
|
|
|
ogrprovider_la_LIBADD = $(QT_LDADD) $(GDAL_LDADD) $(GEOS_LDADD)
|
|
ogrprovider_la_LDFLAGS = -avoid-version -module
|
|
ogrprovider_la_CXXFLAGS := $(GDAL_CFLAGS) $(EXTRA_CXXFLAGS) $(QT_CXXFLAGS) $(DEBUG_QGIS) $(GEOS_CFLAGS)
|
|
|