2012-01-17 11:32:24 +00: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.
|
2012-01-17 11:32:24 +00: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/.
|
2012-01-17 11:32:24 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_Library,test))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_defs,test,\
|
|
|
|
-DOOO_DLLIMPLEMENTATION_TEST \
|
|
|
|
))
|
|
|
|
|
2012-07-02 13:00:50 +01:00
|
|
|
$(eval $(call gb_Library_use_sdk_api,test))
|
2012-01-17 11:32:24 +00:00
|
|
|
|
2012-04-26 19:00:21 +02:00
|
|
|
$(eval $(call gb_Library_use_externals,test,\
|
2013-01-26 21:19:13 +01:00
|
|
|
boost_headers \
|
|
|
|
cppunit \
|
2012-04-26 19:00:21 +02:00
|
|
|
libxml2 \
|
2014-10-29 11:51:49 +01:00
|
|
|
valgrind \
|
2012-04-26 19:00:21 +02:00
|
|
|
))
|
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(eval $(call gb_Library_use_libraries,test,\
|
2014-08-16 20:40:50 +02:00
|
|
|
basegfx \
|
2012-01-17 11:32:24 +00:00
|
|
|
comphelper \
|
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
2013-04-05 18:40:39 +02:00
|
|
|
i18nlangtag \
|
2012-01-17 11:32:24 +00:00
|
|
|
sal \
|
2012-08-01 10:05:05 +02:00
|
|
|
svt \
|
2012-01-17 11:32:24 +00:00
|
|
|
tl \
|
|
|
|
utl \
|
|
|
|
unotest \
|
|
|
|
vcl \
|
2014-08-16 20:40:50 +02:00
|
|
|
drawinglayer \
|
2012-09-26 23:45:28 +02:00
|
|
|
$(gb_UWINAPI) \
|
2012-01-17 11:32:24 +00:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,test,\
|
|
|
|
test/source/bootstrapfixture \
|
2012-04-26 19:00:21 +02:00
|
|
|
test/source/diff/diff \
|
2014-10-29 11:51:49 +01:00
|
|
|
test/source/callgrind \
|
2014-04-29 15:07:54 +02:00
|
|
|
test/source/xmltesttools \
|
|
|
|
test/source/htmltesttools \
|
2014-05-15 16:14:46 +02:00
|
|
|
test/source/mtfxmldump \
|
|
|
|
test/source/xmlwriter \
|
2014-08-16 20:40:50 +02:00
|
|
|
test/source/primitive2dxmldump \
|
2012-01-17 11:32:24 +00:00
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|