2012-04-23 03:14:34 +02:00
|
|
|
#
|
|
|
|
# Makefile
|
|
|
|
#
|
|
|
|
# Makefile for Poco MySQL
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
|
2021-06-17 14:21:22 +02:00
|
|
|
include MySQL.make
|
|
|
|
|
|
|
|
SYSLIBS += -lmysqlclient
|
2012-04-23 03:14:34 +02:00
|
|
|
SYSFLAGS += -DTHREADSAFE -DNO_TCL
|
|
|
|
|
|
|
|
objects = Binder Extractor SessionImpl Connector \
|
|
|
|
MySQLStatementImpl ResultMetadata MySQLException \
|
2013-06-09 19:33:38 +02:00
|
|
|
SessionHandle StatementExecutor Utility
|
2012-04-23 03:14:34 +02:00
|
|
|
|
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 03:14:34 +02:00
|
|
|
target = PocoDataMySQL
|
|
|
|
target_version = $(LIBVERSION)
|
|
|
|
target_libs = PocoData PocoFoundation
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/lib
|