| Miklos Vajna | a2763fe | 2024-01-23 17:08:44 +0100 | [diff] [blame] | 1 | # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- |
| 2 | #************************************************************************* |
| 3 | # |
| Michael Meeks | d037b81 | 2026-03-26 15:06:16 +0000 | [diff] [blame] | 4 | # This file is part of the Collabora Office project. |
| Miklos Vajna | a2763fe | 2024-01-23 17:08:44 +0100 | [diff] [blame] | 5 | # |
| 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_tiledrendering2)) |
| 13 | |
| 14 | $(eval $(call gb_CppunitTest_use_common_precompiled_header,sc_tiledrendering2)) |
| 15 | |
| 16 | $(eval $(call gb_CppunitTest_add_exception_objects,sc_tiledrendering2, \ |
| Xisco Fauli | 4d41da6 | 2024-11-21 00:39:29 +0100 | [diff] [blame] | 17 | sc/qa/unit/tiledrendering/tiledrendering2 \ |
| Miklos Vajna | a2763fe | 2024-01-23 17:08:44 +0100 | [diff] [blame] | 18 | )) |
| 19 | |
| 20 | $(eval $(call gb_CppunitTest_use_libraries,sc_tiledrendering2, \ |
| 21 | comphelper \ |
| 22 | cppu \ |
| 23 | cppuhelper \ |
| 24 | editeng \ |
| 25 | sal \ |
| 26 | sfx \ |
| 27 | sot \ |
| 28 | svl \ |
| 29 | svt \ |
| 30 | svxcore \ |
| 31 | sc \ |
| 32 | scfilt \ |
| 33 | scui \ |
| Miklos Vajna | a5f41ea | 2025-04-14 15:59:50 +0200 | [diff] [blame] | 34 | scqahelper \ |
| Miklos Vajna | a2763fe | 2024-01-23 17:08:44 +0100 | [diff] [blame] | 35 | subsequenttest \ |
| 36 | test \ |
| 37 | unotest \ |
| 38 | $(call gb_Helper_optional,SCRIPTING, \ |
| 39 | vbahelper) \ |
| 40 | vcl \ |
| 41 | tl \ |
| 42 | utl \ |
| 43 | )) |
| 44 | |
| 45 | $(eval $(call gb_CppunitTest_use_externals,sc_tiledrendering2,\ |
| 46 | boost_headers \ |
| 47 | libxml2 \ |
| 48 | )) |
| 49 | |
| 50 | $(eval $(call gb_CppunitTest_set_include,sc_tiledrendering2,\ |
| 51 | -I$(SRCDIR)/sc/source/ui/inc \ |
| 52 | -I$(SRCDIR)/sc/inc \ |
| Miklos Vajna | a5f41ea | 2025-04-14 15:59:50 +0200 | [diff] [blame] | 53 | -I$(SRCDIR)/sc/qa/unit/helper \ |
| Miklos Vajna | a2763fe | 2024-01-23 17:08:44 +0100 | [diff] [blame] | 54 | $$(INCLUDE) \ |
| 55 | )) |
| 56 | |
| 57 | $(eval $(call gb_CppunitTest_use_sdk_api,sc_tiledrendering2)) |
| 58 | $(eval $(call gb_CppunitTest_use_api,sc_tiledrendering2,oovbaapi)) |
| 59 | |
| 60 | $(eval $(call gb_CppunitTest_use_ure,sc_tiledrendering2)) |
| 61 | $(eval $(call gb_CppunitTest_use_vcl,sc_tiledrendering2)) |
| 62 | |
| 63 | $(eval $(call gb_CppunitTest_use_rdb,sc_tiledrendering2,services)) |
| 64 | |
| 65 | $(eval $(call gb_CppunitTest_use_configuration,sc_tiledrendering2)) |
| 66 | |
| 67 | $(eval $(call gb_CppunitTest_add_arguments,sc_tiledrendering2, \ |
| 68 | -env:arg-env=$(gb_Helper_LIBRARY_PATH_VAR)"$$$${$(gb_Helper_LIBRARY_PATH_VAR)+=$$$$$(gb_Helper_LIBRARY_PATH_VAR)}" \ |
| 69 | )) |
| 70 | |
| 71 | $(eval $(call gb_CppunitTest_use_uiconfigs,sc_tiledrendering2, \ |
| 72 | modules/scalc \ |
| 73 | sfx \ |
| 74 | svt \ |
| 75 | )) |
| 76 | |
| 77 | # vim: set noet sw=4 ts=4: |