blob: 5979ede71b7b429841d5b519f67e85416011acf5 [file] [log] [blame]
Matúš Kukanaa20acb2016-01-30 22:12:35 +01001# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
Michael Meeks63c508e2012-07-17 12:30:48 +01002#
Michael Meeksd037b812026-03-26 15:06:16 +00003# This file is part of the Collabora Office project.
Michael Meeks63c508e2012-07-17 12:30:48 +01004#
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
August Sodora034350a2011-10-18 14:50:21 -040010$(eval $(call gb_CppunitTest_CppunitTest,basic_scanner))
11
Michael Stahl6667cae2013-09-12 13:10:32 +020012$(eval $(call gb_CppunitTest_use_ure,basic_scanner))
13
Mike Kaganski38f731f2024-04-02 20:34:00 +050014$(eval $(call gb_CppunitTest_use_externals,basic_scanner,\
15 icu_headers \
16 icuuc \
17 icui18n \
18))
19
August Sodora034350a2011-10-18 14:50:21 -040020$(eval $(call gb_CppunitTest_add_exception_objects,basic_scanner, \
Matúš Kukanaa20acb2016-01-30 22:12:35 +010021 basic/qa/cppunit/test_scanner \
August Sodora034350a2011-10-18 14:50:21 -040022))
23
Michael Stahlc923f7d2012-04-07 23:22:08 +020024$(eval $(call gb_CppunitTest_use_library_objects,basic_scanner,sb))
August Sodora034350a2011-10-18 14:50:21 -040025
Michael Stahlc923f7d2012-04-07 23:22:08 +020026$(eval $(call gb_CppunitTest_use_libraries,basic_scanner, \
August Sodora034350a2011-10-18 14:50:21 -040027 comphelper \
28 cppu \
29 cppuhelper \
30 sal \
31 salhelper \
Eike Rathke876c6192013-04-05 18:40:39 +020032 i18nlangtag \
August Sodora034350a2011-10-18 14:50:21 -040033 sot \
34 svl \
35 svt \
36 tl \
37 utl \
38 vcl \
Michael Meeksae7534f2012-07-06 21:28:03 +010039 xmlscript \
August Sodora034350a2011-10-18 14:50:21 -040040))
41
Tor Lillqvistc2909892012-12-12 01:07:09 +020042ifeq ($(OS),WNT)
Michael Stahldc397aae2012-09-28 15:31:46 +020043$(eval $(call gb_CppunitTest_use_system_win32_libs,basic_scanner, \
Jan Holesovskycbfaa4d2011-10-21 16:44:43 +020044 oleaut32 \
45))
46endif
47
August Sodora034350a2011-10-18 14:50:21 -040048$(eval $(call gb_CppunitTest_set_include,basic_scanner,\
Michael Stahl6a18fdce2016-11-21 23:10:52 +010049 -I$(SRCDIR)/basic/source/inc \
50 -I$(SRCDIR)/basic/inc \
51 $$(INCLUDE) \
August Sodora034350a2011-10-18 14:50:21 -040052))
Matúš Kukanaa20acb2016-01-30 22:12:35 +010053
54# vim: set noet sw=4 ts=4: