| Miklos Vajna | 6353c51 | 2020-07-30 21:18:46 +0200 | [diff] [blame] | 1 | # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- |
| 2 | # |
| Michael Meeks | d037b81 | 2026-03-26 15:06:16 +0000 | [diff] [blame] | 3 | # This file is part of the Collabora Office project. |
| Miklos Vajna | 6353c51 | 2020-07-30 21:18:46 +0200 | [diff] [blame] | 4 | # |
| 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/. |
| 8 | # |
| 9 | |
| 10 | $(eval $(call gb_Library_Library,swqahelper)) |
| 11 | |
| 12 | $(eval $(call gb_Library_set_include,swqahelper,\ |
| 13 | -I$(SRCDIR)/sw/inc \ |
| 14 | -I$(SRCDIR)/sw/source/core/inc \ |
| Miklos Vajna | 335d041 | 2025-01-02 08:18:26 +0100 | [diff] [blame] | 15 | -I$(SRCDIR)/sw/source/uibase/inc \ |
| Miklos Vajna | 6353c51 | 2020-07-30 21:18:46 +0200 | [diff] [blame] | 16 | -I$(SRCDIR)/sw/qa/inc \ |
| 17 | $$(INCLUDE) \ |
| 18 | )) |
| 19 | |
| Noel Grandin | 7a896f1 | 2020-10-31 22:04:03 +0200 | [diff] [blame] | 20 | $(eval $(call gb_Library_use_custom_headers,swqahelper,\ |
| 21 | officecfg/registry \ |
| 22 | )) |
| 23 | |
| Miklos Vajna | 6353c51 | 2020-07-30 21:18:46 +0200 | [diff] [blame] | 24 | $(eval $(call gb_Library_use_externals,swqahelper, \ |
| 25 | boost_headers \ |
| 26 | cppunit \ |
| 27 | libxml2 \ |
| 28 | )) |
| 29 | |
| Miklos Vajna | d477fa8 | 2023-03-17 14:00:17 +0100 | [diff] [blame] | 30 | $(eval $(call gb_Library_use_custom_headers,swqahelper,\ |
| 31 | officecfg/registry \ |
| 32 | )) |
| 33 | |
| Miklos Vajna | 6353c51 | 2020-07-30 21:18:46 +0200 | [diff] [blame] | 34 | $(eval $(call gb_Library_add_defs,swqahelper,\ |
| 35 | -DSWQAHELPER_DLLIMPLEMENTATION \ |
| 36 | )) |
| 37 | |
| 38 | $(eval $(call gb_Library_use_api,swqahelper,\ |
| 39 | udkapi \ |
| 40 | offapi \ |
| 41 | oovbaapi \ |
| 42 | )) |
| 43 | |
| 44 | $(eval $(call gb_Library_use_libraries,swqahelper,\ |
| 45 | comphelper \ |
| 46 | cppu \ |
| 47 | cppuhelper \ |
| 48 | editeng \ |
| 49 | for \ |
| 50 | sal \ |
| 51 | sw \ |
| 52 | sfx \ |
| 53 | sot \ |
| Xisco Fauli | 4170b94 | 2022-11-08 18:27:05 +0100 | [diff] [blame] | 54 | subsequenttest \ |
| Miklos Vajna | 6353c51 | 2020-07-30 21:18:46 +0200 | [diff] [blame] | 55 | svl \ |
| 56 | svt \ |
| 57 | svx \ |
| 58 | svxcore \ |
| 59 | test \ |
| 60 | tl \ |
| 61 | unotest \ |
| 62 | utl \ |
| 63 | ucbhelper \ |
| 64 | unotest \ |
| 65 | vcl \ |
| 66 | )) |
| 67 | |
| 68 | $(eval $(call gb_Library_add_exception_objects,swqahelper,\ |
| 69 | sw/qa/unit/swmodeltestbase \ |
| Miklos Vajna | 335d041 | 2025-01-02 08:18:26 +0100 | [diff] [blame] | 70 | sw/qa/unit/swtiledrenderingtest \ |
| Miklos Vajna | 2af0a12 | 2025-01-07 13:55:51 +0100 | [diff] [blame] | 71 | sw/qa/unit/swtestviewcallback \ |
| Miklos Vajna | 6353c51 | 2020-07-30 21:18:46 +0200 | [diff] [blame] | 72 | )) |
| 73 | |
| 74 | # vim: set noet sw=4 ts=4: |