2020-08-12 09:06:14 +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,xmloff_draw))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_use_externals,xmloff_draw,\
|
|
|
|
boost_headers \
|
2021-03-28 18:21:04 +02:00
|
|
|
libxml2 \
|
2020-08-12 09:06:14 +02:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_add_exception_objects,xmloff_draw, \
|
|
|
|
xmloff/qa/unit/draw \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_use_libraries,xmloff_draw, \
|
|
|
|
comphelper \
|
|
|
|
cppu \
|
2022-11-11 16:44:59 +01:00
|
|
|
cppuhelper \
|
2022-12-31 20:59:03 +09:00
|
|
|
docmodel \
|
2020-08-12 09:06:14 +02:00
|
|
|
embobj \
|
|
|
|
sal \
|
2022-10-24 16:56:28 +02:00
|
|
|
subsequenttest \
|
2020-08-12 09:06:14 +02:00
|
|
|
test \
|
|
|
|
unotest \
|
|
|
|
utl \
|
2022-11-09 14:22:09 +01:00
|
|
|
tl \
|
2022-08-29 09:23:22 +02:00
|
|
|
avmedia \
|
|
|
|
svxcore \
|
|
|
|
vcl \
|
2020-08-12 09:06:14 +02:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_use_sdk_api,xmloff_draw))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_use_ure,xmloff_draw))
|
|
|
|
$(eval $(call gb_CppunitTest_use_vcl,xmloff_draw))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_use_rdb,xmloff_draw,services))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_use_custom_headers,xmloff_draw,\
|
|
|
|
officecfg/registry \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_use_configuration,xmloff_draw))
|
|
|
|
|
2021-12-07 15:50:47 +01:00
|
|
|
$(eval $(call gb_CppunitTest_add_arguments,xmloff_draw, \
|
|
|
|
-env:arg-env=$(gb_Helper_LIBRARY_PATH_VAR)"$$$${$(gb_Helper_LIBRARY_PATH_VAR)+=$$$$$(gb_Helper_LIBRARY_PATH_VAR)}" \
|
|
|
|
))
|
|
|
|
|
2020-08-12 09:06:14 +02:00
|
|
|
# vim: set noet sw=4 ts=4:
|