summaryrefslogtreecommitdiff
path: root/mysqlc/Library_mysqlc.mk
blob: 656b5dc519d76cb6179ce973720eb0ded5cb1f1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, you can obtain one at http://mozilla.org/MPL/2.0/.
#

$(eval $(call gb_Library_Library,mysqlc))

$(eval $(call gb_Library_add_cxxflags,mysqlc,-DRTL_DISABLE_FAST_STRING))

$(eval $(call gb_Library_use_externals,mysqlc,\
	boost_headers \
	mysqlcppconn \
))

ifeq ($(SYSTEM_MYSQL_CPPCONN),)
$(eval $(call gb_Library_add_libs,mysqlc,\
	$(if $(filter-out WNT,$(OS)),$(if $(filter MACOSX SOLARIS,$(OS)),-lz -lm,\
	-rdynamic -lz -lcrypt -lnsl -lm)) \
))
endif

$(eval $(call gb_Library_use_sdk_api,mysqlc))

$(eval $(call gb_Library_use_libraries,mysqlc,\
	cppu \
	sal \
	salhelper \
	cppuhelper \
))

$(eval $(call gb_Library_add_defs,mysqlc,\
	-DCPPDBC_EXPORTS \
	-DCPPCONN_LIB_BUILD \
	-DMARIADBC_VERSION_MAJOR=$(MARIADBC_MAJOR) \
	-DMARIADBC_VERSION_MINOR=$(MARIADBC_MINOR) \
	-DMARIADBC_VERSION_MICRO=$(MARIADBC_MICRO) \
	$(if $(SYSTEM_MYSQL_CPPCONN),,\
	-DCPPCONN_LIB=\"$(call gb_Library_get_runtime_filename,mysqlcppconn)\") \
	$(if $(BUNDLE_MARIADB),-DBUNDLE_MARIADB=\"$(LIBMARIADB)\") \
))

$(eval $(call gb_Library_add_exception_objects,mysqlc,\
	mysqlc/source/mysqlc_driver \
	mysqlc/source/mysqlc_services \
	mysqlc/source/mysqlc_connection \
	mysqlc/source/mysqlc_resultset \
	mysqlc/source/mysqlc_resultsetmetadata \
	mysqlc/source/mysqlc_statement \
	mysqlc/source/mysqlc_preparedstatement \
	mysqlc/source/mysqlc_databasemetadata \
	mysqlc/source/mysqlc_types \
	mysqlc/source/mysqlc_general \
	mysqlc/source/mysqlc_propertyids \
))

$(eval $(call gb_Library_set_componentfile,mysqlc,mysqlc/source/mysqlc))

# vim: set noet sw=4 ts=4: