mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@1130 c8812cc2-4d05-0410-92ff-de0c093fc19c
26 lines
686 B
Makefile
26 lines
686 B
Makefile
plugindir = ${pkglibdir}
|
|
plugin_LTLIBRARIES = grassprovider.la
|
|
|
|
%.moc.cpp: %.h
|
|
$(MOC) -o $@ $<
|
|
|
|
%.h: %.ui
|
|
$(UIC) -o $@ $<
|
|
|
|
%.cpp: %.ui
|
|
$(UIC) -o $@ -impl $*.h $<
|
|
|
|
grassprovider_la_SOURCES = qgsgrassprovider.cpp \
|
|
qgsgrassprovider.h \
|
|
qgsgrass.cpp \
|
|
qgsgrass.h \
|
|
../../src/qgsfeature.cpp \
|
|
../../src/qgsfeatureattribute.cpp \
|
|
../../src/qgsrect.cpp \
|
|
../../src/qgspoint.cpp \
|
|
../../src/qgsfield.cpp
|
|
|
|
grassprovider_la_LIBADD = $(QT_LDADD) $(GRASS_LIB)
|
|
grassprovider_la_LDFLAGS = -avoid-version -module
|
|
grassprovider_la_CXXFLAGS = $(CXXFLAGS) -I$(GRASS_INC) -I$(PG_INC) $(EXTRA_CXXFLAGS) $(QT_CXXFLAGS) $(DEBUG_QGIS)
|