lok: impress: show only supported transitions in the side pane
[LibreOffice.git] / connectivity / Library_mysqlc.mk
blob0999b46d3eeccb68a2945bf279ce461d362b9014
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, you can obtain one at http://mozilla.org/MPL/2.0/.
10 $(eval $(call gb_Library_Library,mysqlc))
12 $(eval $(call gb_Library_use_externals,mysqlc,\
13 boost_headers \
14 mariadb-connector-c \
17 $(eval $(call gb_Library_set_include,mysqlc,\
18 -I$(SRCDIR)/connectivity/inc \
19 -I$(SRCDIR)/connectivity/source/inc \
20 $$(INCLUDE) \
21 -I$(WORKDIR)/YaccTarget/connectivity/source/parse \
24 $(eval $(call gb_Library_add_libs,mysqlc,\
25 $(if $(filter-out WNT,$(OS)),$(if $(filter HAIKU MACOSX SOLARIS,$(OS)),\
26 -lz -lm,-rdynamic -lz -lcrypt -lm)) \
27 $(if $(filter LINUX,$(OS)),-ldl,) \
30 $(eval $(call gb_Library_use_sdk_api,mysqlc))
32 $(eval $(call gb_Library_use_libraries,mysqlc,\
33 cppu \
34 dbtools \
35 sal \
36 salhelper \
37 comphelper \
38 cppuhelper \
41 $(eval $(call gb_Library_add_defs,mysqlc,\
42 -DCPPDBC_EXPORTS \
43 -DCPPCONN_LIB_BUILD \
44 -DMARIADBC_VERSION_MAJOR=$(MARIADBC_MAJOR) \
45 -DMARIADBC_VERSION_MINOR=$(MARIADBC_MINOR) \
46 -DMARIADBC_VERSION_MICRO=$(MARIADBC_MICRO) \
47 $(if $(BUNDLE_MARIADB_CONNECTOR_C),-DBUNDLE_MARIADB=\"$(LIBMARIADB)\") \
50 $(eval $(call gb_Library_add_exception_objects,mysqlc,\
51 connectivity/source/drivers/mysqlc/mysqlc_driver \
52 connectivity/source/drivers/mysqlc/mysqlc_services \
53 connectivity/source/drivers/mysqlc/mysqlc_connection \
54 connectivity/source/drivers/mysqlc/mysqlc_resultset \
55 connectivity/source/drivers/mysqlc/mysqlc_prepared_resultset \
56 connectivity/source/drivers/mysqlc/mysqlc_resultsetmetadata \
57 connectivity/source/drivers/mysqlc/mysqlc_statement \
58 connectivity/source/drivers/mysqlc/mysqlc_preparedstatement \
59 connectivity/source/drivers/mysqlc/mysqlc_databasemetadata \
60 connectivity/source/drivers/mysqlc/mysqlc_types \
61 connectivity/source/drivers/mysqlc/mysqlc_general \
64 $(eval $(call gb_Library_set_componentfile,mysqlc,connectivity/source/drivers/mysqlc/mysqlc))
66 # vim: set noet sw=4 ts=4: