mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
** Added code for detecting QGIS as m4 file to tools ** this will be installed together with QT and GDAL detection to $prefix/share/aclocal/qgis.m4 so the plugins can just use those simple unique macros ** updated German translation !! Developers have to link the installed qgis.m4 to /usr/share/aclocal/ !! or where ever aclocal keeps the m4 files !! otherwise it's not detected by the plugins autogen.sh (more exactly !! aclocal) !! It can be cheated by adding -I path/to/qgis.m4 to the aclocal of !! autogen.sh. But be carefull not to commit that to CVS git-svn-id: http://svn.osgeo.org/qgis/trunk@1213 c8812cc2-4d05-0410-92ff-de0c093fc19c
16 lines
560 B
Makefile
16 lines
560 B
Makefile
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)
|
|
ogrprovider_la_LDFLAGS = -avoid-version -module
|
|
ogrprovider_la_CXXFLAGS := $(CXXFLAGS) $(GDAL_CFLAGS) $(EXTRA_CXXFLAGS) $(QT_CXXFLAGS) $(DEBUG_QGIS)
|