blob: 015f2a48541a14fbc8bc9a14050f4ae007149e15 [file] [log] [blame]
Miklos Vajna7d1e5fd2024-02-19 09:40:04 +01001# -*- 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.
Miklos Vajna7d1e5fd2024-02-19 09:40:04 +01005#
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,sw_tiledrendering2))
13
14$(eval $(call gb_CppunitTest_use_common_precompiled_header,sw_tiledrendering2))
15
16$(eval $(call gb_CppunitTest_add_exception_objects,sw_tiledrendering2, \
Xisco Faulie3de36e2024-11-20 16:22:01 +010017 sw/qa/extras/tiledrendering/tiledrendering2 \
Miklos Vajna7d1e5fd2024-02-19 09:40:04 +010018))
19
20$(eval $(call gb_CppunitTest_use_libraries,sw_tiledrendering2, \
21 comphelper \
22 cppu \
23 cppuhelper \
24 editeng \
25 docmodel \
26 sal \
27 sfx \
28 subsequenttest \
29 svl \
30 svt \
31 svxcore \
32 sw \
33 swqahelper \
34 test \
35 unotest \
36 vcl \
37 tl \
38 utl \
39))
40
41$(eval $(call gb_CppunitTest_use_externals,sw_tiledrendering2,\
42 boost_headers \
43 libxml2 \
44))
45
46$(eval $(call gb_CppunitTest_set_include,sw_tiledrendering2,\
47 -I$(SRCDIR)/sw/inc \
48 -I$(SRCDIR)/sw/source/core/inc \
49 -I$(SRCDIR)/sw/source/uibase/inc \
50 -I$(SRCDIR)/sw/qa/inc \
51 $$(INCLUDE) \
52))
53
54$(eval $(call gb_CppunitTest_use_api,sw_tiledrendering2,\
55 udkapi \
56 offapi \
57 oovbaapi \
58))
59
60$(eval $(call gb_CppunitTest_use_ure,sw_tiledrendering2))
61$(eval $(call gb_CppunitTest_use_vcl,sw_tiledrendering2))
62
63$(eval $(call gb_CppunitTest_use_rdb,sw_tiledrendering2,services))
64
65$(eval $(call gb_CppunitTest_use_configuration,sw_tiledrendering2))
66
Miklos Vajna62f71492024-02-29 08:32:00 +010067ifneq ($(filter MORE_FONTS,$(BUILD_TYPE)),)
68$(eval $(call gb_CppunitTest_set_non_application_font_use,sw_tiledrendering2,abort))
69endif
70
Miklos Vajna7d1e5fd2024-02-19 09:40:04 +010071# vim: set noet sw=4 ts=4: