2011-12-19 16:08:32 -06:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
|
|
#
|
|
|
|
#
|
2013-04-24 11:14:03 -05:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-12-19 16:08:32 -06:00
|
|
|
#
|
2013-04-24 11:14:03 -05:00
|
|
|
# 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/.
|
2011-12-19 16:08:32 -06:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_Library,dbpool2))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_componentfile,dbpool2,connectivity/source/cpool/dbpool2))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_include,dbpool2,\
|
|
|
|
$$(INCLUDE) \
|
2011-12-22 18:47:22 -06:00
|
|
|
-I$(SRCDIR)/connectivity/inc \
|
2011-12-19 16:08:32 -06:00
|
|
|
-I$(SRCDIR)/connectivity/source/inc \
|
|
|
|
))
|
|
|
|
|
2014-06-04 09:25:39 -05:00
|
|
|
$(eval $(call gb_Library_set_precompiled_header,dbpool2,$(SRCDIR)/connectivity/inc/pch/precompiled_dbpool2))
|
|
|
|
|
2012-07-02 07:00:50 -05:00
|
|
|
$(eval $(call gb_Library_use_sdk_api,dbpool2))
|
2011-12-19 16:08:32 -06:00
|
|
|
|
2012-05-23 01:13:17 -05:00
|
|
|
$(eval $(call gb_Library_use_libraries,dbpool2,\
|
2011-12-19 16:08:32 -06:00
|
|
|
comphelper \
|
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
|
|
|
dbtools \
|
|
|
|
sal \
|
|
|
|
salhelper \
|
2012-09-26 16:45:28 -05:00
|
|
|
$(gb_UWINAPI) \
|
2011-12-19 16:08:32 -06:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,dbpool2,\
|
|
|
|
connectivity/source/cpool/ZConnectionWrapper \
|
|
|
|
connectivity/source/cpool/ZDriverWrapper \
|
|
|
|
connectivity/source/cpool/ZPooledConnection \
|
|
|
|
connectivity/source/cpool/ZConnectionPool \
|
|
|
|
connectivity/source/cpool/ZPoolCollection \
|
|
|
|
connectivity/source/cpool/Zregistration \
|
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|