2011-12-19 22:09:48 +01:00
|
|
|
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
|
2011-10-17 11:37:56 +02:00
|
|
|
#
|
|
|
|
#
|
2013-04-24 17:14:03 +01:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-10-17 11:37:56 +02:00
|
|
|
#
|
2013-04-24 17:14:03 +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/.
|
2011-10-17 11:37:56 +02:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_CppunitTest,extensions_test_update))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_add_exception_objects,extensions_test_update, \
|
|
|
|
extensions/qa/update/test_update \
|
|
|
|
))
|
|
|
|
|
2013-01-26 23:56:39 +01:00
|
|
|
$(eval $(call gb_CppunitTest_use_external,extensions_test_update,boost_headers))
|
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(eval $(call gb_CppunitTest_use_libraries,extensions_test_update, \
|
2011-12-17 18:12:13 +01:00
|
|
|
updchk \
|
2011-10-17 11:37:56 +02:00
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
|
|
|
sal \
|
2011-11-29 21:52:43 +01:00
|
|
|
test \
|
|
|
|
unotest \
|
2012-09-26 23:45:28 +02:00
|
|
|
$(gb_UWINAPI) \
|
2011-10-17 11:37:56 +02:00
|
|
|
))
|
|
|
|
|
2011-12-17 18:12:13 +01:00
|
|
|
ifeq ($(OS),WNT)
|
2012-09-28 15:31:46 +02:00
|
|
|
$(eval $(call gb_CppunitTest_use_system_win32_libs,extensions_test_update,\
|
2011-12-17 18:12:13 +01:00
|
|
|
shell32 \
|
|
|
|
ole32 \
|
|
|
|
))
|
|
|
|
endif
|
|
|
|
|
2011-12-06 19:17:52 +01:00
|
|
|
$(eval $(call gb_CppunitTest_use_external,extensions_test_update,curl))
|
|
|
|
|
2011-10-17 11:37:56 +02:00
|
|
|
$(eval $(call gb_CppunitTest_set_include,extensions_test_update,\
|
|
|
|
$$(INCLUDE) \
|
2011-12-19 15:26:33 +01:00
|
|
|
-I$(SRCDIR)/extensions/inc \
|
2011-10-17 11:37:56 +02:00
|
|
|
))
|
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(eval $(call gb_CppunitTest_use_api,extensions_test_update,\
|
2011-10-17 11:37:56 +02:00
|
|
|
offapi \
|
|
|
|
udkapi \
|
|
|
|
))
|
|
|
|
|
2012-04-08 15:17:45 +02:00
|
|
|
$(eval $(call gb_CppunitTest_use_ure,extensions_test_update))
|
2012-04-08 15:12:18 +02:00
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(eval $(call gb_CppunitTest_use_components,extensions_test_update,\
|
2011-12-14 10:41:19 +01:00
|
|
|
configmgr/source/configmgr \
|
2011-12-17 18:12:13 +01:00
|
|
|
extensions/source/update/feed/updatefeed \
|
2012-01-15 02:59:40 +01:00
|
|
|
ucb/source/core/ucb1 \
|
|
|
|
ucb/source/ucp/file/ucpfile1 \
|
2011-11-23 23:58:48 +01:00
|
|
|
unoxml/source/service/unoxml \
|
|
|
|
))
|
|
|
|
|
2012-04-08 13:40:35 +02:00
|
|
|
$(eval $(call gb_CppunitTest_use_configuration,extensions_test_update))
|
2011-11-23 23:58:48 +01:00
|
|
|
|
2011-10-17 11:37:56 +02:00
|
|
|
# vim:set shiftwidth=4 softtabstop=4 noexpandtab:
|