2021-06-09 07:24:24 -05: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/.
|
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
|
|
|
# template for export tests
|
|
|
|
define chart2_export$(1)_test
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_CppunitTest,chart2_export$(1)))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_use_externals,chart2_export$(1), \
|
|
|
|
boost_headers \
|
|
|
|
libxml2 \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_add_exception_objects,chart2_export$(1), \
|
|
|
|
chart2/qa/extras/chart2export$(1) \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_use_libraries,chart2_export$(1), \
|
|
|
|
$(call gb_Helper_optional,AVMEDIA,avmedia) \
|
|
|
|
basegfx \
|
|
|
|
comphelper \
|
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
|
|
|
drawinglayer \
|
|
|
|
editeng \
|
|
|
|
for \
|
|
|
|
forui \
|
|
|
|
i18nlangtag \
|
|
|
|
msfilter \
|
|
|
|
oox \
|
|
|
|
sal \
|
|
|
|
salhelper \
|
|
|
|
sax \
|
|
|
|
sb \
|
|
|
|
sc \
|
|
|
|
sw \
|
|
|
|
sd \
|
|
|
|
sfx \
|
|
|
|
sot \
|
2022-10-25 07:51:02 -05:00
|
|
|
subsequenttest \
|
2021-06-09 07:24:24 -05:00
|
|
|
svl \
|
|
|
|
svt \
|
|
|
|
svx \
|
|
|
|
svxcore \
|
|
|
|
test \
|
|
|
|
tl \
|
|
|
|
tk \
|
|
|
|
ucbhelper \
|
|
|
|
unotest \
|
|
|
|
utl \
|
2021-08-06 10:59:37 -05:00
|
|
|
$(call gb_Helper_optional,SCRIPTING, \
|
|
|
|
vbahelper) \
|
2021-06-09 07:24:24 -05:00
|
|
|
vcl \
|
|
|
|
xo \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_set_include,chart2_export$(1),\
|
|
|
|
-I$(SRCDIR)/chart2/inc \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_use_sdk_api,chart2_export$(1)))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_use_ure,chart2_export$(1)))
|
|
|
|
$(eval $(call gb_CppunitTest_use_vcl,chart2_export$(1)))
|
2023-09-25 02:03:54 -05:00
|
|
|
$(eval $(call gb_CppunitTest_use_rdb,chart2_export$(1),services))
|
2021-06-09 07:24:24 -05:00
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_use_uiconfigs,chart2_export$(1), \
|
|
|
|
modules/swriter \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_use_configuration,chart2_export$(1)))
|
|
|
|
|
|
|
|
$(call gb_CppunitTest_get_target,chart2_export$(1)): $(call gb_Package_get_target,postprocess_images)
|
|
|
|
|
2021-07-21 06:08:48 -05:00
|
|
|
$(eval $(call gb_CppunitTest_add_arguments,chart2_export$(1), \
|
|
|
|
-env:arg-env=$(gb_Helper_LIBRARY_PATH_VAR)"$$$${$(gb_Helper_LIBRARY_PATH_VAR)+=$$$$$(gb_Helper_LIBRARY_PATH_VAR)}" \
|
|
|
|
))
|
|
|
|
|
2021-06-09 07:24:24 -05:00
|
|
|
endef
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|