summaryrefslogtreecommitdiff
path: root/svl/CppunitTest_svl_notify.mk
blob: 201a9cf22cdf9b59983f0bd2d9d5fa26144f1d74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# -*- 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/.
#

$(eval $(call gb_CppunitTest_CppunitTest,svl_notify))

$(eval $(call gb_CppunitTest_use_external,svl_notify,boost_headers))

$(eval $(call gb_CppunitTest_use_sdk_api,svl_notify))

$(eval $(call gb_CppunitTest_add_exception_objects,svl_notify, \
	svl/qa/unit/notify/test_SfxBroadcaster \
))

$(eval $(call gb_CppunitTest_use_libraries,svl_notify, \
	svl \
	comphelper \
	sal \
	cppu \
	cppuhelper \
))

$(eval $(call gb_CppunitTest_set_include,svl_notify,\
	-I$(SRCDIR)/svl/source/inc \
	$$(INCLUDE) \
))

# vim: set noet sw=4 ts=4:
platize SvXMLEnumMapEntry
in preparation for "scoped UNO enums". This is a little hacky: In order to limit the scope of this change, the templated SvXMLEnumMapEntry struct actually has a fixed size field, and we cast it to SvXMLEnumMapEntry<sal_uInt16>* in various places, to avoid carrying the type param around. Change-Id: Idfbc5561303c557598dd5564b7a7259ae5261d83 Reviewed-on: https://gerrit.libreoffice.org/34987 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff')