| Miklos Vajna | 7d1e5fd | 2024-02-19 09:40:04 +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 | 7d1e5fd | 2024-02-19 09:40:04 +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,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 Fauli | e3de36e | 2024-11-20 16:22:01 +0100 | [diff] [blame] | 17 | sw/qa/extras/tiledrendering/tiledrendering2 \ |
| Miklos Vajna | 7d1e5fd | 2024-02-19 09:40:04 +0100 | [diff] [blame] | 18 | )) |
| 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 Vajna | 62f7149 | 2024-02-29 08:32:00 +0100 | [diff] [blame] | 67 | ifneq ($(filter MORE_FONTS,$(BUILD_TYPE)),) |
| 68 | $(eval $(call gb_CppunitTest_set_non_application_font_use,sw_tiledrendering2,abort)) |
| 69 | endif |
| 70 | |
| Miklos Vajna | 7d1e5fd | 2024-02-19 09:40:04 +0100 | [diff] [blame] | 71 | # vim: set noet sw=4 ts=4: |