poco/Data/PostgreSQL/testsuite/Makefile
Alex Fabijanic 6dad8502d3 fix(Data):
* make bool Session::isTransaction() return Poco::Optional
* move parsing to Statement
* SQLParser make build
* other fixes and improvemets #4230
2023-11-01 00:25:46 +01:00

25 lines
542 B
Makefile

#
# Makefile
#
# Makefile for Poco PostgreSQL testsuite
#
include $(POCO_BASE)/build/rules/global
include $(POCO_BASE)/Data/PostgreSQL/PostgreSQL.make
# Note: linking order is important, do not change it.
SYSLIBS += -lpq -lz -lpthread -ldl
objects = PostgreSQLTestSuite Driver PostgreSQLTest SQLExecutor
ifndef POCO_DATA_NO_SQL_PARSER
target_includes = $(POCO_BASE)/Data/src
endif
target = testrunner
target_version = 1
target_libs = PocoDataPostgreSQL PocoData PocoFoundation CppUnit
include $(POCO_BASE)/build/rules/exec