mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
18 lines
677 B
Makefile
18 lines
677 B
Makefile
# if PostgreSQL support requested, add PostgreSQL files
|
|
if POSTGRESDB
|
|
lib_LTLIBRARIES = postgresprovider.la
|
|
|
|
postgresprovider_la_SOURCES = qgspostgresprovider.cpp \
|
|
../../src/qgsfeature.cpp \
|
|
../../src/qgsfeatureattribute.cpp \
|
|
../../src/qgsrect.cpp \
|
|
../../src/qgspoint.cpp \
|
|
../../src/qgsfield.cpp
|
|
|
|
AM_CXXFLAGS := $(CXXFLAGS) $(EXTRA_CXXFLAGS) $(QT_CXXFLAGS) $(PGDB) -I$(PG_INC) $(DEBUG_QGIS)
|
|
|
|
postgresprovider_la_LIBADD = $(QT_LDADD) $(PG_LIB)
|
|
postgresprovider_la_LDFLAGS = -avoid-version -module
|
|
|
|
endif
|