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