2014-04-28 23:33:04 +09:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2011-12-17 23:58:52 +01:00
|
|
|
#
|
|
|
|
#
|
2013-04-24 17:14:03 +01:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-12-17 23:58:52 +01:00
|
|
|
#
|
2013-04-24 17:14:03 +01: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-17 23:58:52 +01:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_Library,log))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_componentfile,log,extensions/source/logging/log))
|
|
|
|
|
2013-01-26 21:19:13 +01:00
|
|
|
$(eval $(call gb_Library_use_external,log,boost_headers))
|
|
|
|
|
2012-07-02 13:00:50 +01:00
|
|
|
$(eval $(call gb_Library_use_sdk_api,log))
|
2011-12-17 23:58:52 +01:00
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,log,\
|
|
|
|
extensions/source/logging/consolehandler \
|
|
|
|
extensions/source/logging/csvformatter \
|
|
|
|
extensions/source/logging/filehandler \
|
|
|
|
extensions/source/logging/log_services \
|
2012-02-16 14:27:35 +00:00
|
|
|
extensions/source/logging/log_module \
|
2011-12-17 23:58:52 +01:00
|
|
|
extensions/source/logging/logger \
|
|
|
|
extensions/source/logging/loggerconfig \
|
|
|
|
extensions/source/logging/loghandler \
|
2012-02-16 14:27:35 +00:00
|
|
|
extensions/source/logging/logrecord \
|
2011-12-17 23:58:52 +01:00
|
|
|
extensions/source/logging/plaintextformatter \
|
|
|
|
))
|
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(eval $(call gb_Library_use_libraries,log,\
|
2011-12-17 23:58:52 +01:00
|
|
|
comphelper \
|
|
|
|
cppuhelper \
|
|
|
|
cppu \
|
|
|
|
sal \
|
2013-05-21 13:50:45 +02:00
|
|
|
tl \
|
2012-09-26 23:45:28 +02:00
|
|
|
$(gb_UWINAPI) \
|
2011-12-17 23:58:52 +01:00
|
|
|
))
|
|
|
|
|
2013-01-26 22:19:07 +01:00
|
|
|
# vim:set noet sw=4 ts=4:
|