| Miklos Vajna | b320ade | 2025-03-12 14:37:02 +0100 | [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 | b320ade | 2025-03-12 14:37:02 +0100 | [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,sdqahelper)) |
| 11 | |
| 12 | $(eval $(call gb_Library_set_include,sdqahelper,\ |
| 13 | -I$(SRCDIR)/sd/inc \ |
| 14 | -I$(SRCDIR)/sd/source/ui/inc \ |
| 15 | -I$(SRCDIR)/sd/qa/inc \ |
| 16 | $$(INCLUDE) \ |
| 17 | )) |
| 18 | |
| 19 | $(eval $(call gb_Library_use_custom_headers,sdqahelper,\ |
| 20 | officecfg/registry \ |
| 21 | )) |
| 22 | |
| 23 | $(eval $(call gb_Library_use_externals,sdqahelper, \ |
| 24 | boost_headers \ |
| 25 | cppunit \ |
| 26 | libxml2 \ |
| 27 | )) |
| 28 | |
| 29 | $(eval $(call gb_Library_add_defs,sdqahelper,\ |
| 30 | -DSDQAHELPER_DLLIMPLEMENTATION \ |
| 31 | )) |
| 32 | |
| 33 | $(eval $(call gb_Library_use_api,sdqahelper,\ |
| 34 | udkapi \ |
| 35 | offapi \ |
| 36 | oovbaapi \ |
| 37 | )) |
| 38 | |
| 39 | $(eval $(call gb_Library_use_libraries,sdqahelper,\ |
| 40 | comphelper \ |
| 41 | cppu \ |
| 42 | cppuhelper \ |
| 43 | sal \ |
| 44 | subsequenttest \ |
| 45 | svxcore \ |
| 46 | sd \ |
| 47 | sfx \ |
| 48 | tl \ |
| 49 | utl \ |
| 50 | vcl \ |
| 51 | test \ |
| 52 | unotest \ |
| 53 | )) |
| 54 | |
| 55 | $(eval $(call gb_Library_add_exception_objects,sdqahelper,\ |
| 56 | sd/qa/unit/sdtiledrenderingtest \ |
| 57 | )) |
| 58 | |
| 59 | # vim: set noet sw=4 ts=4: |