2012-07-20 15:34:43 +02:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
|
|
#*************************************************************************
|
|
|
|
#
|
2013-04-19 21:10:42 +01:00
|
|
|
# This file is part of the LibreOffice project.
|
2012-07-20 15:34:43 +02:00
|
|
|
#
|
2013-04-19 21:10:42 +01:00
|
|
|
# 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/.
|
2012-07-20 15:34:43 +02:00
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
2013-03-18 09:47:02 +01:00
|
|
|
$(eval $(call gb_CppunitTest_CppunitTest,sw_odfexport))
|
2012-07-20 15:34:43 +02:00
|
|
|
|
2013-03-18 09:47:02 +01:00
|
|
|
$(eval $(call gb_CppunitTest_add_exception_objects,sw_odfexport, \
|
2012-07-20 15:34:43 +02:00
|
|
|
sw/qa/extras/odfexport/odfexport \
|
|
|
|
))
|
|
|
|
|
2013-03-18 09:47:02 +01:00
|
|
|
$(eval $(call gb_CppunitTest_use_libraries,sw_odfexport, \
|
2012-12-14 12:58:00 +02:00
|
|
|
comphelper \
|
2012-07-20 15:34:43 +02:00
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
|
|
|
sal \
|
|
|
|
sw \
|
|
|
|
test \
|
|
|
|
tl \
|
|
|
|
unotest \
|
|
|
|
utl \
|
|
|
|
vcl \
|
2012-09-26 23:45:28 +02:00
|
|
|
$(gb_UWINAPI) \
|
2012-07-20 15:34:43 +02:00
|
|
|
))
|
|
|
|
|
2013-03-18 09:47:02 +01:00
|
|
|
$(eval $(call gb_CppunitTest_use_externals,sw_odfexport,\
|
2013-01-26 21:19:13 +01:00
|
|
|
boost_headers \
|
2012-07-20 15:34:43 +02:00
|
|
|
libxml2 \
|
|
|
|
))
|
|
|
|
|
2013-03-18 09:47:02 +01:00
|
|
|
$(eval $(call gb_CppunitTest_set_include,sw_odfexport,\
|
2012-07-20 15:34:43 +02:00
|
|
|
-I$(SRCDIR)/sw/inc \
|
|
|
|
-I$(SRCDIR)/sw/source/core/inc \
|
2012-11-18 11:07:45 +01:00
|
|
|
-I$(SRCDIR)/sw/qa/extras/inc \
|
2012-07-20 15:34:43 +02:00
|
|
|
$$(INCLUDE) \
|
|
|
|
))
|
|
|
|
|
2016-03-22 10:43:56 +03:00
|
|
|
$(eval $(call gb_CppunitTest_use_sdk_api,sw_odfexport))
|
2012-07-20 15:34:43 +02:00
|
|
|
|
2013-03-18 09:47:02 +01:00
|
|
|
$(eval $(call gb_CppunitTest_use_ure,sw_odfexport))
|
2014-06-04 08:45:54 +02:00
|
|
|
$(eval $(call gb_CppunitTest_use_vcl,sw_odfexport))
|
2012-07-20 15:34:43 +02:00
|
|
|
|
2016-06-27 14:27:25 +02:00
|
|
|
$(eval $(call gb_CppunitTest_use_rdb,sw_odfexport,services))
|
2012-07-20 15:34:43 +02:00
|
|
|
|
2014-11-16 15:12:54 +01:00
|
|
|
$(eval $(call gb_CppunitTest_use_custom_headers,sw_odfexport,\
|
|
|
|
officecfg/registry \
|
|
|
|
))
|
|
|
|
|
2013-03-18 09:47:02 +01:00
|
|
|
$(eval $(call gb_CppunitTest_use_configuration,sw_odfexport))
|
2012-07-20 15:34:43 +02:00
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|