blob: 443db5a51610efcf4d2c83bab1b2c643a00f6f26 [file] [log] [blame]
Tomaž Vajngerlc89131d2024-06-07 10:14:39 +09001# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
2#*************************************************************************
3#
Michael Meeksd037b812026-03-26 15:06:16 +00004# This file is part of the Collabora Office project.
Tomaž Vajngerlc89131d2024-06-07 10:14:39 +09005#
6# This Source Code Form is subject to the terms of the Mozilla Public
7# License, v. 2.0. If a copy of the MPL was not distributed with this
8# file, You can obtain one at http://mozilla.org/MPL/2.0/.
9#
10#*************************************************************************
11
12$(eval $(call gb_CppunitTest_CppunitTest,sd_annotation_tests))
13
14$(eval $(call gb_CppunitTest_use_externals,sd_annotation_tests,\
15 boost_headers \
16 libxml2 \
17))
18
19$(eval $(call gb_CppunitTest_use_common_precompiled_header,sd_annotation_tests))
20
21$(eval $(call gb_CppunitTest_add_exception_objects,sd_annotation_tests, \
22 sd/qa/unit/AnnotationTest \
23))
24
25$(eval $(call gb_CppunitTest_use_libraries,sd_annotation_tests, \
26 basegfx \
27 comphelper \
28 cppu \
29 cppuhelper \
30 drawinglayer \
31 docmodel \
32 editeng \
33 for \
34 forui \
35 i18nlangtag \
36 sal \
37 salhelper \
38 sax \
39 sd \
40 sfx \
41 sot \
42 subsequenttest \
43 svl \
44 svt \
45 svx \
46 svxcore \
47 test \
48 tl \
49 tk \
50 ucbhelper \
51 unotest \
52 utl \
53 vcl \
54 xo \
55))
56
57$(eval $(call gb_CppunitTest_set_include,sd_annotation_tests,\
58 -I$(SRCDIR)/sd/source/ui/inc \
59 -I$(SRCDIR)/sd/inc \
60 $$(INCLUDE) \
61))
62
63$(eval $(call gb_CppunitTest_use_sdk_api,sd_annotation_tests))
64$(eval $(call gb_CppunitTest_use_ure,sd_annotation_tests))
65$(eval $(call gb_CppunitTest_use_vcl,sd_annotation_tests))
66$(eval $(call gb_CppunitTest_use_rdb,sd_annotation_tests,services))
67
68$(eval $(call gb_CppunitTest_use_custom_headers,sd_annotation_tests,\
69 officecfg/registry \
70))
71
72$(eval $(call gb_CppunitTest_use_configuration,sd_annotation_tests))
73
74$(eval $(call gb_CppunitTest_add_arguments,sd_annotation_tests, \
75 -env:arg-env=$(gb_Helper_LIBRARY_PATH_VAR)"$$$${$(gb_Helper_LIBRARY_PATH_VAR)+=$$$$$(gb_Helper_LIBRARY_PATH_VAR)}" \
76))
77
78# vim: set noet sw=4 ts=4: