2011-08-10 02:12:48 +09:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2011-07-24 21:16:36 +01:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
2013-04-19 21:10:42 +01:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-07-24 21:16:36 +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-07-24 21:16:36 +01:00
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_CppunitTest,tools_test))
|
|
|
|
|
2013-01-26 21:19:13 +01:00
|
|
|
$(eval $(call gb_CppunitTest_use_external,tools_test,boost_headers))
|
|
|
|
|
2011-07-24 21:16:36 +01:00
|
|
|
$(eval $(call gb_CppunitTest_add_exception_objects,tools_test, \
|
2014-10-17 13:08:32 +02:00
|
|
|
tools/qa/cppunit/test_bigint \
|
2014-10-23 21:37:43 -02:00
|
|
|
tools/qa/cppunit/test_fract \
|
2012-02-23 08:00:02 +00:00
|
|
|
tools/qa/cppunit/test_inetmime \
|
2011-07-24 21:18:14 +01:00
|
|
|
tools/qa/cppunit/test_pathutils \
|
2012-02-23 08:00:02 +00:00
|
|
|
tools/qa/cppunit/test_reversemap \
|
2011-09-01 23:55:18 +01:00
|
|
|
tools/qa/cppunit/test_stream \
|
2012-02-23 08:00:02 +00:00
|
|
|
tools/qa/cppunit/test_urlobj \
|
2014-05-12 12:29:20 +02:00
|
|
|
tools/qa/cppunit/test_color \
|
2011-07-24 21:16:36 +01:00
|
|
|
))
|
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(eval $(call gb_CppunitTest_use_api,tools_test, \
|
2011-07-24 21:16:36 +01:00
|
|
|
udkapi \
|
|
|
|
offapi \
|
|
|
|
))
|
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(eval $(call gb_CppunitTest_use_libraries,tools_test, \
|
2011-07-24 21:16:36 +01:00
|
|
|
sal \
|
|
|
|
tl \
|
2012-09-26 23:45:28 +02:00
|
|
|
$(gb_UWINAPI) \
|
2011-07-24 21:16:36 +01:00
|
|
|
))
|
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(eval $(call gb_CppunitTest_use_static_libraries,tools_test, \
|
2011-07-26 10:42:56 +03:00
|
|
|
ooopathutils \
|
|
|
|
))
|
|
|
|
|
2011-07-24 21:16:36 +01:00
|
|
|
$(eval $(call gb_CppunitTest_set_include,tools_test,\
|
|
|
|
$$(INCLUDE) \
|
2012-03-05 19:02:10 +01:00
|
|
|
-I$(SRCDIR)/tools/inc \
|
2011-07-24 21:16:36 +01:00
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|