2018-05-07 17:28:38 +02:00
|
|
|
#
|
|
|
|
# Makefile
|
|
|
|
#
|
|
|
|
# Makefile for Poco PostgreSQL testsuite
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
|
2021-11-05 14:14:12 +01:00
|
|
|
include $(POCO_BASE)/Data/PostgreSQL/PostgreSQL.make
|
2018-05-07 17:28:38 +02:00
|
|
|
|
|
|
|
# Note: linking order is important, do not change it.
|
2020-01-16 19:55:06 +01:00
|
|
|
SYSLIBS += -lpq -lz -lpthread -ldl
|
2018-05-07 17:28:38 +02:00
|
|
|
|
|
|
|
objects = PostgreSQLTestSuite Driver PostgreSQLTest SQLExecutor
|
|
|
|
|
2023-11-01 00:25:21 +01:00
|
|
|
ifndef POCO_DATA_NO_SQL_PARSER
|
2024-02-13 14:04:23 +01:00
|
|
|
target_includes += $(POCO_BASE)/Data/SQLParser $(POCO_BASE)/Data/SQLParser/src
|
2023-11-01 00:25:21 +01:00
|
|
|
endif
|
|
|
|
|
2018-05-07 17:28:38 +02:00
|
|
|
target = testrunner
|
|
|
|
target_version = 1
|
2023-12-22 09:27:34 +01:00
|
|
|
target_libs = PocoDataPostgreSQL PocoDataTest PocoData PocoFoundation CppUnit
|
|
|
|
target_includes += $(POCO_BASE)/Data/testsuite/DataTest/include
|
2018-05-07 17:28:38 +02:00
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/exec
|