accept aarch64 JDK for win/aarch64
[LibreOffice.git] / sc / subsequent_setup.mk
blob6847aca1a7754acb51f1af7b89e741dc6663910a
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 # template for subsequent tests
11 define sc_subsequent_test
13 $(eval $(call gb_CppunitTest_CppunitTest,sc_subsequent_$(1)))
15 $(eval $(call gb_CppunitTest_use_common_precompiled_header,sc_subsequent_$(1)))
17 $(eval $(call gb_CppunitTest_add_exception_objects,sc_subsequent_$(1), \
18 sc/qa/unit/subsequent_$(1) \
21 $(eval $(call gb_CppunitTest_use_externals,sc_subsequent_$(1), \
22 boost_headers \
23 mdds_headers \
24 libxml2 \
27 $(eval $(call gb_CppunitTest_use_libraries,sc_subsequent_$(1), \
28 basegfx \
29 comphelper \
30 cppu \
31 cppuhelper \
32 drawinglayer \
33 editeng \
34 for \
35 forui \
36 i18nlangtag \
37 msfilter \
38 oox \
39 sal \
40 salhelper \
41 sax \
42 sc \
43 scqahelper \
44 sfx \
45 sot \
46 subsequenttest \
47 svl \
48 svt \
49 svx \
50 svxcore \
51 test \
52 tk \
53 tl \
54 ucbhelper \
55 unotest \
56 utl \
57 vcl \
58 xo \
61 $(eval $(call gb_CppunitTest_set_include,sc_subsequent_$(1),\
62 -I$(SRCDIR)/sc/source/ui/inc \
63 -I$(SRCDIR)/sc/inc \
64 $$(INCLUDE) \
67 $(eval $(call gb_CppunitTest_use_api,sc_subsequent_$(1),\
68 udkapi \
69 offapi \
70 oovbaapi \
73 $(eval $(call gb_CppunitTest_use_ure,sc_subsequent_$(1)))
74 $(eval $(call gb_CppunitTest_use_vcl,sc_subsequent_$(1)))
76 $(eval $(call gb_CppunitTest_use_rdb,sc_subsequent_$(1),services))
78 $(eval $(call gb_CppunitTest_use_custom_headers,sc_subsequent_$(1),\
79 officecfg/registry \
82 $(eval $(call gb_CppunitTest_use_configuration,sc_subsequent_$(1)))
84 $(eval $(call gb_CppunitTest_use_packages,sc_subsequent_$(1), \
85 oox_generated \
88 $(eval $(call gb_CppunitTest_use_more_fonts,sc_subsequent_$(1)))
90 $(eval $(call gb_CppunitTest_add_arguments,sc_subsequent_$(1), \
91 -env:arg-env=$(gb_Helper_LIBRARY_PATH_VAR)"$$$${$(gb_Helper_LIBRARY_PATH_VAR)+=$$$$$(gb_Helper_LIBRARY_PATH_VAR)}" \
94 endef
96 # vim: set noet sw=4 ts=4: