2011-12-19 11:30:31 -06:00
|
|
|
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
|
2006-01-25 09:18:16 -06:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
2008-04-11 05:56:34 -05:00
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2006-01-25 09:18:16 -06:00
|
|
|
#
|
2011-08-02 10:08:14 -05:00
|
|
|
# Copyright 2000, 2011 Oracle and/or its affiliates.
|
2006-01-25 09:18:16 -06:00
|
|
|
#
|
2008-04-11 05:56:34 -05:00
|
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
2006-01-25 09:18:16 -06:00
|
|
|
#
|
2008-04-11 05:56:34 -05:00
|
|
|
# This file is part of OpenOffice.org.
|
2006-01-25 09:18:16 -06:00
|
|
|
#
|
2008-04-11 05:56:34 -05:00
|
|
|
# OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
# only, as published by the Free Software Foundation.
|
2006-01-25 09:18:16 -06:00
|
|
|
#
|
2008-04-11 05:56:34 -05:00
|
|
|
# OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser General Public License version 3 for more details
|
|
|
|
# (a copy is included in the LICENSE file that accompanied this code).
|
2006-01-25 09:18:16 -06:00
|
|
|
#
|
2008-04-11 05:56:34 -05:00
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# version 3 along with OpenOffice.org. If not, see
|
|
|
|
# <http://www.openoffice.org/license.html>
|
|
|
|
# for a copy of the LGPLv3 License.
|
2006-01-25 09:18:16 -06:00
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
2011-08-02 10:08:14 -05:00
|
|
|
$(eval $(call gb_CppunitTest_CppunitTest,o3tl_tests))
|
2006-01-25 09:18:16 -06:00
|
|
|
|
2012-04-07 16:22:10 -05:00
|
|
|
$(eval $(call gb_CppunitTest_use_package,o3tl_tests,o3tl_inc))
|
2011-08-02 10:08:14 -05:00
|
|
|
|
2012-04-07 16:22:08 -05:00
|
|
|
$(eval $(call gb_CppunitTest_use_libraries,o3tl_tests,\
|
2011-08-02 10:08:14 -05:00
|
|
|
sal \
|
2011-12-19 11:30:31 -06:00
|
|
|
$(gb_STDLIBS) \
|
2011-08-02 10:08:14 -05:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_CppunitTest_add_exception_objects,o3tl_tests,\
|
|
|
|
o3tl/qa/cow_wrapper_clients \
|
|
|
|
o3tl/qa/test-cow_wrapper \
|
|
|
|
o3tl/qa/test-heap_ptr \
|
|
|
|
o3tl/qa/test-range \
|
|
|
|
o3tl/qa/test-vector_pool \
|
2012-07-11 06:35:21 -05:00
|
|
|
o3tl/qa/test-sorted_vector \
|
2011-08-02 10:08:14 -05:00
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4:
|