2013-05-10 13:21:30 -05:00
|
|
|
# -*- 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/.
|
|
|
|
#
|
|
|
|
|
2013-07-11 00:48:30 -05:00
|
|
|
$(eval $(call gb_Library_Library,firebird_sdbc))
|
2013-05-10 13:21:30 -05:00
|
|
|
|
2013-07-11 00:48:30 -05:00
|
|
|
$(eval $(call gb_Library_use_sdk_api,firebird_sdbc))
|
2013-05-10 13:21:30 -05:00
|
|
|
|
2013-07-11 00:48:30 -05:00
|
|
|
$(eval $(call gb_Library_use_externals,firebird_sdbc,\
|
2013-07-14 15:13:34 -05:00
|
|
|
boost_headers \
|
2013-06-14 08:55:22 -05:00
|
|
|
libfbembed \
|
2013-05-10 13:21:30 -05:00
|
|
|
))
|
|
|
|
|
2013-07-11 00:48:30 -05:00
|
|
|
$(eval $(call gb_Library_set_include,firebird_sdbc,\
|
2013-05-22 03:55:08 -05:00
|
|
|
-I$(SRCDIR)/connectivity/source/inc \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
-I$(WORKDIR)/YaccTarget/connectivity/source/parse \
|
|
|
|
))
|
|
|
|
|
2014-06-04 09:25:39 -05:00
|
|
|
$(eval $(call gb_Library_set_precompiled_header,firebird_sdbc,$(SRCDIR)/connectivity/inc/pch/precompiled_firebird_sdbc))
|
|
|
|
|
2013-07-11 00:48:30 -05:00
|
|
|
$(eval $(call gb_Library_use_libraries,firebird_sdbc, \
|
2013-05-10 13:21:30 -05:00
|
|
|
comphelper \
|
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
2013-05-22 03:55:08 -05:00
|
|
|
dbtools \
|
2013-05-10 13:21:30 -05:00
|
|
|
sal \
|
|
|
|
salhelper \
|
2013-07-11 00:48:30 -05:00
|
|
|
utl \
|
2013-11-09 11:39:18 -06:00
|
|
|
svt \
|
2013-07-11 00:48:30 -05:00
|
|
|
vcl \
|
2013-05-10 13:21:30 -05:00
|
|
|
$(gb_UWINAPI) \
|
|
|
|
))
|
|
|
|
|
2013-07-11 00:48:30 -05:00
|
|
|
$(eval $(call gb_Library_set_componentfile,firebird_sdbc,connectivity/source/drivers/firebird/firebird_sdbc))
|
2013-05-10 13:21:30 -05:00
|
|
|
|
2013-07-11 00:48:30 -05:00
|
|
|
$(eval $(call gb_Library_add_exception_objects,firebird_sdbc,\
|
2013-07-21 10:45:08 -05:00
|
|
|
connectivity/source/drivers/firebird/Blob \
|
2013-08-12 10:47:18 -05:00
|
|
|
connectivity/source/drivers/firebird/Catalog \
|
2013-08-10 06:39:38 -05:00
|
|
|
connectivity/source/drivers/firebird/Columns \
|
2013-07-31 09:03:29 -05:00
|
|
|
connectivity/source/drivers/firebird/Connection \
|
|
|
|
connectivity/source/drivers/firebird/DatabaseMetaData \
|
|
|
|
connectivity/source/drivers/firebird/Driver \
|
2013-09-06 05:34:09 -05:00
|
|
|
connectivity/source/drivers/firebird/Indexes \
|
2013-08-21 02:30:41 -05:00
|
|
|
connectivity/source/drivers/firebird/Keys \
|
2013-07-31 09:03:29 -05:00
|
|
|
connectivity/source/drivers/firebird/PreparedStatement \
|
|
|
|
connectivity/source/drivers/firebird/ResultSet \
|
|
|
|
connectivity/source/drivers/firebird/ResultSetMetaData \
|
|
|
|
connectivity/source/drivers/firebird/Services \
|
|
|
|
connectivity/source/drivers/firebird/Statement \
|
2013-07-23 09:06:54 -05:00
|
|
|
connectivity/source/drivers/firebird/StatementCommonBase \
|
2013-08-08 16:00:36 -05:00
|
|
|
connectivity/source/drivers/firebird/Table \
|
2013-08-08 12:04:18 -05:00
|
|
|
connectivity/source/drivers/firebird/Tables \
|
2013-08-19 07:58:55 -05:00
|
|
|
connectivity/source/drivers/firebird/User \
|
|
|
|
connectivity/source/drivers/firebird/Users \
|
2013-07-22 01:36:52 -05:00
|
|
|
connectivity/source/drivers/firebird/Util \
|
2013-05-10 13:21:30 -05:00
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|