mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
16 lines
633 B
Makefile
16 lines
633 B
Makefile
# if PostgreSQL support requested, add PostgreSQL files
|
|
if POSTGRESDB
|
|
lib_LTLIBRARIES = libpostgresprovider.la
|
|
|
|
libpostgresprovider_la_SOURCES = qgspostgresprovider.cpp \
|
|
../../src/qgsfeature.cpp \
|
|
../../src/qgsfeatureattribute.cpp \
|
|
../../src/qgsrect.cpp \
|
|
../../src/qgspoint.cpp \
|
|
../../src/qgsfield.cpp
|
|
|
|
AM_CXXFLAGS := $(CXXFLAGS) $(EXTRA_CXXFLAGS) -I../include $(QT_CXXFLAGS) $(PGDB) -I$(PG_INC)
|
|
|
|
libpostgresprovider_la_LIBADD = $(QT_LDADD) $(PG_LIB)
|
|
endif
|