2016-01-30 22:12:35 +01:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2012-07-17 12:30:48 +01:00
|
|
|
#
|
|
|
|
# This file is part of the LibreOffice project.
|
|
|
|
#
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
#
|
|
|
|
|
2011-10-18 14:50:21 -04:00
|
|
|
$(eval $(call gb_CppunitTest_CppunitTest,basic_scanner))
|
|
|
|
|
2013-09-12 13:10:32 +02:00
|
|
|
$(eval $(call gb_CppunitTest_use_ure,basic_scanner))
|
|
|
|
|
2024-04-02 20:34:00 +05:00
|
|
|
$(eval $(call gb_CppunitTest_use_externals,basic_scanner,\
|
|
|
|
icu_headers \
|
|
|
|
icuuc \
|
|
|
|
icui18n \
|
|
|
|
))
|
|
|
|
|
2011-10-18 14:50:21 -04:00
|
|
|
$(eval $(call gb_CppunitTest_add_exception_objects,basic_scanner, \
|
2016-01-30 22:12:35 +01:00
|
|
|
basic/qa/cppunit/test_scanner \
|
2011-10-18 14:50:21 -04:00
|
|
|
))
|
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(eval $(call gb_CppunitTest_use_library_objects,basic_scanner,sb))
|
2011-10-18 14:50:21 -04:00
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(eval $(call gb_CppunitTest_use_libraries,basic_scanner, \
|
2011-10-18 14:50:21 -04:00
|
|
|
comphelper \
|
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
|
|
|
sal \
|
|
|
|
salhelper \
|
2013-04-05 18:40:39 +02:00
|
|
|
i18nlangtag \
|
2011-10-18 14:50:21 -04:00
|
|
|
sot \
|
|
|
|
svl \
|
|
|
|
svt \
|
|
|
|
tl \
|
|
|
|
utl \
|
|
|
|
vcl \
|
2012-07-06 21:28:03 +01:00
|
|
|
xmlscript \
|
2011-10-18 14:50:21 -04:00
|
|
|
))
|
|
|
|
|
2012-12-12 01:07:09 +02:00
|
|
|
ifeq ($(OS),WNT)
|
2012-09-28 15:31:46 +02:00
|
|
|
$(eval $(call gb_CppunitTest_use_system_win32_libs,basic_scanner, \
|
2011-10-21 16:44:43 +02:00
|
|
|
oleaut32 \
|
|
|
|
))
|
|
|
|
endif
|
|
|
|
|
2011-10-18 14:50:21 -04:00
|
|
|
$(eval $(call gb_CppunitTest_set_include,basic_scanner,\
|
2016-11-21 23:10:52 +01:00
|
|
|
-I$(SRCDIR)/basic/source/inc \
|
|
|
|
-I$(SRCDIR)/basic/inc \
|
|
|
|
$$(INCLUDE) \
|
2011-10-18 14:50:21 -04:00
|
|
|
))
|
2016-01-30 22:12:35 +01:00
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|