| Xisco Fauli | 17e7743 | 2024-11-21 21:18:34 +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. |
| Xisco Fauli | 17e7743 | 2024-11-21 21:18:34 +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,sd_lokit_search)) |
| 13 | |
| 14 | $(eval $(call gb_CppunitTest_use_common_precompiled_header,sd_lokit_search)) |
| 15 | |
| 16 | $(eval $(call gb_CppunitTest_add_exception_objects,sd_lokit_search, \ |
| 17 | sd/qa/unit/tiledrendering/LOKitSearchTest \ |
| 18 | )) |
| 19 | |
| 20 | $(eval $(call gb_CppunitTest_use_libraries,sd_lokit_search, \ |
| 21 | comphelper \ |
| 22 | cppu \ |
| 23 | cppuhelper \ |
| 24 | drawinglayer \ |
| 25 | editeng \ |
| 26 | sal \ |
| 27 | sfx \ |
| 28 | subsequenttest \ |
| 29 | svl \ |
| 30 | svt \ |
| 31 | svxcore \ |
| 32 | sd \ |
| Miklos Vajna | b320ade | 2025-03-12 14:37:02 +0100 | [diff] [blame] | 33 | sdqahelper \ |
| Xisco Fauli | 17e7743 | 2024-11-21 21:18:34 +0100 | [diff] [blame] | 34 | test \ |
| 35 | unotest \ |
| 36 | vcl \ |
| 37 | tl \ |
| 38 | utl \ |
| 39 | )) |
| 40 | |
| 41 | $(eval $(call gb_CppunitTest_use_externals,sd_lokit_search,\ |
| 42 | boost_headers \ |
| 43 | libxml2 \ |
| 44 | )) |
| 45 | |
| 46 | $(eval $(call gb_CppunitTest_set_include,sd_lokit_search,\ |
| 47 | -I$(SRCDIR)/sd/inc \ |
| 48 | -I$(SRCDIR)/sd/source/ui/inc \ |
| 49 | -I$(SRCDIR)/sd/qa/unit \ |
| Miklos Vajna | b320ade | 2025-03-12 14:37:02 +0100 | [diff] [blame] | 50 | -I$(SRCDIR)/sd/qa/inc \ |
| Xisco Fauli | 17e7743 | 2024-11-21 21:18:34 +0100 | [diff] [blame] | 51 | $$(INCLUDE) \ |
| 52 | )) |
| 53 | |
| 54 | $(eval $(call gb_CppunitTest_use_sdk_api,sd_lokit_search)) |
| 55 | |
| 56 | $(eval $(call gb_CppunitTest_use_ure,sd_lokit_search)) |
| 57 | $(eval $(call gb_CppunitTest_use_vcl,sd_lokit_search)) |
| 58 | |
| 59 | $(eval $(call gb_CppunitTest_use_rdb,sd_lokit_search,services)) |
| 60 | |
| 61 | $(eval $(call gb_CppunitTest_use_configuration,sd_lokit_search)) |
| 62 | |
| 63 | $(eval $(call gb_CppunitTest_use_uiconfigs,sd_lokit_search, \ |
| 64 | modules/simpress \ |
| 65 | svx \ |
| 66 | )) |
| 67 | |
| 68 | |
| 69 | $(eval $(call gb_CppunitTest_add_arguments,sd_lokit_search, \ |
| 70 | -env:arg-env=$(gb_Helper_LIBRARY_PATH_VAR)"$$$${$(gb_Helper_LIBRARY_PATH_VAR)+=$$$$$(gb_Helper_LIBRARY_PATH_VAR)}" \ |
| 71 | )) |
| 72 | |
| 73 | # vim: set noet sw=4 ts=4: |