mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-06 00:31:10 +01:00
26 lines
648 B
Makefile
26 lines
648 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/SQLParser $(POCO_BASE)/Data/SQLParser/src
|
|
endif
|
|
|
|
target = testrunner
|
|
target_version = 1
|
|
target_libs = PocoDataPostgreSQL PocoDataTest PocoData PocoFoundation CppUnit
|
|
target_includes += $(POCO_BASE)/Data/DataTest/include
|
|
|
|
include $(POCO_BASE)/build/rules/exec
|