2013-10-10 12:08:22 +02:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
|
|
#*************************************************************************
|
|
|
|
#
|
|
|
|
# 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/.
|
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_CppunitTest,sw_uiwriter))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_add_exception_objects,sw_uiwriter, \
|
|
|
|
sw/qa/extras/uiwriter/uiwriter \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_use_libraries,sw_uiwriter, \
|
|
|
|
comphelper \
|
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
2014-11-26 07:09:00 +00:00
|
|
|
editeng \
|
2013-10-10 12:08:22 +02:00
|
|
|
sal \
|
2014-06-24 17:15:58 +02:00
|
|
|
sfx \
|
2014-06-24 16:55:02 +02:00
|
|
|
svl \
|
2013-10-10 12:08:22 +02:00
|
|
|
svt \
|
2014-06-23 15:40:45 +02:00
|
|
|
svxcore \
|
2013-10-10 12:08:22 +02:00
|
|
|
sw \
|
|
|
|
test \
|
|
|
|
unotest \
|
|
|
|
vcl \
|
|
|
|
tl \
|
2013-11-19 18:07:28 +01:00
|
|
|
utl \
|
2013-10-10 12:08:22 +02:00
|
|
|
$(gb_UWINAPI) \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_use_externals,sw_uiwriter,\
|
|
|
|
boost_headers \
|
|
|
|
libxml2 \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_set_include,sw_uiwriter,\
|
|
|
|
-I$(SRCDIR)/sw/inc \
|
|
|
|
-I$(SRCDIR)/sw/source/core/inc \
|
2014-05-26 17:43:14 +02:00
|
|
|
-I$(SRCDIR)/sw/source/uibase/inc \
|
2013-10-10 12:08:22 +02:00
|
|
|
-I$(SRCDIR)/sw/qa/extras/inc \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_use_api,sw_uiwriter,\
|
|
|
|
offapi \
|
|
|
|
udkapi \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_use_ure,sw_uiwriter))
|
2014-06-04 08:45:54 +02:00
|
|
|
$(eval $(call gb_CppunitTest_use_vcl,sw_uiwriter))
|
2013-10-10 12:08:22 +02:00
|
|
|
|
2014-12-18 18:40:12 +01:00
|
|
|
$(eval $(call gb_CppunitTest_use_rdb,sw_uiwriter,services))
|
2013-10-10 12:08:22 +02:00
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_use_configuration,sw_uiwriter))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|