blob: 707f9744e31e2121f376d7b8538e39e96e9f5f3f [file] [log] [blame]
Miklos Vajna6353c512020-07-30 21:18:46 +02001# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
2#
Michael Meeksd037b812026-03-26 15:06:16 +00003# This file is part of the Collabora Office project.
Miklos Vajna6353c512020-07-30 21:18:46 +02004#
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 Vajna335d0412025-01-02 08:18:26 +010015 -I$(SRCDIR)/sw/source/uibase/inc \
Miklos Vajna6353c512020-07-30 21:18:46 +020016 -I$(SRCDIR)/sw/qa/inc \
17 $$(INCLUDE) \
18))
19
Noel Grandin7a896f12020-10-31 22:04:03 +020020$(eval $(call gb_Library_use_custom_headers,swqahelper,\
21 officecfg/registry \
22))
23
Miklos Vajna6353c512020-07-30 21:18:46 +020024$(eval $(call gb_Library_use_externals,swqahelper, \
25 boost_headers \
26 cppunit \
27 libxml2 \
28))
29
Miklos Vajnad477fa82023-03-17 14:00:17 +010030$(eval $(call gb_Library_use_custom_headers,swqahelper,\
31 officecfg/registry \
32))
33
Miklos Vajna6353c512020-07-30 21:18:46 +020034$(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 Fauli4170b942022-11-08 18:27:05 +010054 subsequenttest \
Miklos Vajna6353c512020-07-30 21:18:46 +020055 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 Vajna335d0412025-01-02 08:18:26 +010070 sw/qa/unit/swtiledrenderingtest \
Miklos Vajna2af0a122025-01-07 13:55:51 +010071 sw/qa/unit/swtestviewcallback \
Miklos Vajna6353c512020-07-30 21:18:46 +020072))
73
74# vim: set noet sw=4 ts=4: