[pt-PT] Added 20 words to autocorrect
[LibreOffice.git] / connectivity / Library_mysqlc.mk
blobf765fb1e305f6c51ce6033044c085f9aedc6f41a
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 \
15 openssl \
18 $(eval $(call gb_Library_set_include,mysqlc,\
19 -I$(SRCDIR)/connectivity/inc \
20 -I$(SRCDIR)/connectivity/source/inc \
21 $$(INCLUDE) \
22 -I$(WORKDIR)/YaccTarget/connectivity/source/parse \
25 $(eval $(call gb_Library_add_libs,mysqlc,\
26 $(if $(filter-out WNT,$(OS)),$(if $(filter HAIKU MACOSX SOLARIS,$(OS)),\
27 -lz -lm,-rdynamic -lz -lcrypt -lm)) \
28 $(if $(filter LINUX,$(OS)),-ldl,) \
31 $(eval $(call gb_Library_use_sdk_api,mysqlc))
33 $(eval $(call gb_Library_use_libraries,mysqlc,\
34 cppu \
35 dbtools \
36 sal \
37 salhelper \
38 comphelper \
39 cppuhelper \
42 $(eval $(call gb_Library_add_defs,mysqlc,\
43 -DCPPDBC_EXPORTS \
44 -DCPPCONN_LIB_BUILD \
45 -DMARIADBC_VERSION_MAJOR=$(MARIADBC_MAJOR) \
46 -DMARIADBC_VERSION_MINOR=$(MARIADBC_MINOR) \
47 -DMARIADBC_VERSION_MICRO=$(MARIADBC_MICRO) \
48 $(if $(BUNDLE_MARIADB_CONNECTOR_C),-DBUNDLE_MARIADB=\"$(LIBMARIADB)\") \
51 $(eval $(call gb_Library_add_exception_objects,mysqlc,\
52 connectivity/source/drivers/mysqlc/mysqlc_driver \
53 connectivity/source/drivers/mysqlc/mysqlc_services \
54 connectivity/source/drivers/mysqlc/mysqlc_connection \
55 connectivity/source/drivers/mysqlc/mysqlc_resultset \
56 connectivity/source/drivers/mysqlc/mysqlc_prepared_resultset \
57 connectivity/source/drivers/mysqlc/mysqlc_resultsetmetadata \
58 connectivity/source/drivers/mysqlc/mysqlc_statement \
59 connectivity/source/drivers/mysqlc/mysqlc_preparedstatement \
60 connectivity/source/drivers/mysqlc/mysqlc_databasemetadata \
61 connectivity/source/drivers/mysqlc/mysqlc_types \
62 connectivity/source/drivers/mysqlc/mysqlc_general \
65 $(eval $(call gb_Library_set_componentfile,mysqlc,connectivity/source/drivers/mysqlc/mysqlc))
67 # vim: set noet sw=4 ts=4: