2012-04-23 01:14:34 +00:00
|
|
|
#
|
|
|
|
# Makefile
|
|
|
|
#
|
|
|
|
# Makefile for Poco MySQL testsuite
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
|
2021-06-17 14:21:22 +02:00
|
|
|
include $(POCO_BASE)/Data/MySQL/MySQL.make
|
2012-07-07 16:03:21 +00:00
|
|
|
|
|
|
|
# Note: linking order is important, do not change it.
|
2021-06-17 14:21:22 +02:00
|
|
|
SYSLIBS += -lmysqlclient -lz -lpthread -ldl
|
2012-04-23 01:14:34 +00:00
|
|
|
|
|
|
|
objects = MySQLTestSuite Driver MySQLTest 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
|
|
|
|
|
2012-04-23 01:14:34 +00:00
|
|
|
target = testrunner
|
|
|
|
target_version = 1
|
2012-04-23 10:24:48 +00:00
|
|
|
target_libs = PocoDataMySQL PocoData PocoFoundation CppUnit
|
2012-04-23 01:14:34 +00:00
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/exec
|