blob: 42df0890ec4997653608abc3d6498151e91f32e4 [file] [log] [blame]
Caolán McNamara18d0b7a2024-03-29 10:00:30 +00001# -*- 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.
Caolán McNamara18d0b7a2024-03-29 10:00:30 +00005#
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,sc_parallelism))
13
14$(eval $(call gb_CppunitTest_use_common_precompiled_header,sc_parallelism))
15
16$(eval $(call gb_CppunitTest_add_exception_objects,sc_parallelism, \
17 sc/qa/unit/parallelism \
18))
19
20$(eval $(call gb_CppunitTest_use_externals,sc_parallelism, \
21 boost_headers \
22 mdds_headers \
23 libxml2 \
24 $(call gb_Helper_optional,OPENCL, \
25 clew) \
26))
27
28$(eval $(call gb_CppunitTest_use_libraries,sc_parallelism, \
29 basegfx \
30 comphelper \
31 cppu \
32 cppuhelper \
33 i18nlangtag \
34 sal \
35 sax \
36 sc \
37 scqahelper \
38 sfx \
39 subsequenttest \
40 svl \
41 svx \
42 svxcore \
43 test \
44 tl \
45 unotest \
46 utl \
47 vcl \
48))
49
50$(eval $(call gb_CppunitTest_set_include,sc_parallelism,\
51 -I$(SRCDIR)/sc/source/ui/inc \
52 -I$(SRCDIR)/sc/inc \
53 $$(INCLUDE) \
54))
55
56$(eval $(call gb_CppunitTest_use_api,sc_parallelism,\
57 offapi \
58 udkapi \
59))
60
61$(eval $(call gb_CppunitTest_use_custom_headers,sc_parallelism,\
62 officecfg/registry \
63))
64
65$(eval $(call gb_CppunitTest_use_sdk_api,sc_parallelism))
66
67$(eval $(call gb_CppunitTest_use_ure,sc_parallelism))
68
69$(eval $(call gb_CppunitTest_use_vcl,sc_parallelism))
70
71$(eval $(call gb_CppunitTest_use_rdb,sc_parallelism,services))
72
73$(eval $(call gb_CppunitTest_use_components,sc_parallelism))
74
75$(eval $(call gb_CppunitTest_use_configuration,sc_parallelism))
76
77$(eval $(call gb_CppunitTest_add_arguments,sc_parallelism, \
78 -env:arg-env=$(gb_Helper_LIBRARY_PATH_VAR)"$$$${$(gb_Helper_LIBRARY_PATH_VAR)+=$$$$$(gb_Helper_LIBRARY_PATH_VAR)}" \
79))
80
81# vim: set noet sw=4 ts=4: