2011-08-14 23:46:37 +01: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.
|
2011-08-14 23:46:37 +01: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/.
|
2011-08-14 23:46:37 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_CppunitTest,comphelper_test))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_add_exception_objects,comphelper_test, \
|
|
|
|
comphelper/qa/string/test_string \
|
2016-01-19 19:45:45 +02:00
|
|
|
comphelper/qa/container/testifcontainer \
|
2011-08-14 23:46:37 +01:00
|
|
|
))
|
|
|
|
|
2016-03-22 10:43:56 +03:00
|
|
|
$(eval $(call gb_CppunitTest_use_sdk_api,comphelper_test))
|
2011-08-14 23:46:37 +01:00
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(eval $(call gb_CppunitTest_use_libraries,comphelper_test, \
|
2011-08-14 23:46:37 +01:00
|
|
|
comphelper \
|
|
|
|
cppuhelper \
|
|
|
|
cppu \
|
|
|
|
sal \
|
2012-09-26 23:45:28 +02:00
|
|
|
$(gb_UWINAPI) \
|
2011-08-14 23:46:37 +01:00
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|