mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
with libtool and without ** also cleaned the other Makefiles that way git-svn-id: http://svn.osgeo.org/qgis/trunk@1127 c8812cc2-4d05-0410-92ff-de0c093fc19c
15 lines
629 B
Makefile
15 lines
629 B
Makefile
plugindir = ${pkglibdir}
|
|
plugin_LTLIBRARIES = postgresprovider.la
|
|
|
|
postgresprovider_la_SOURCES = qgspostgresprovider.cpp \
|
|
qgspostgresprovider.h \
|
|
../../src/qgsfeature.cpp \
|
|
../../src/qgsfeatureattribute.cpp \
|
|
../../src/qgsrect.cpp \
|
|
../../src/qgspoint.cpp \
|
|
../../src/qgsfield.cpp
|
|
|
|
postgresprovider_la_LIBADD = $(QT_LDADD) $(PG_LIB)
|
|
postgresprovider_la_LDFLAGS = -avoid-version -module
|
|
postgresprovider_la_CXXFLAGS = $(CXXFLAGS) $(EXTRA_CXXFLAGS) $(QT_CXXFLAGS) -I$(PG_INC) $(DEBUG_QGIS)
|