1# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
2#
3# This file is part of the LibreOffice project.
4#
5# This Source Code Form is subject to the terms of the Mozilla Public
6# License, v. 2.0. If a copy of the MPL was not distributed with this
7# file, You can obtain one at http://mozilla.org/MPL/2.0/.
8#
9
10$(eval $(call gb_CppunitTest_CppunitTest,svgio_tools))
11
12$(eval $(call gb_CppunitTest_add_exception_objects,svgio_tools,\
13    svgio/qa/cppunit/SvgNumberTest \
14))
15
16$(eval $(call gb_CppunitTest_set_include,svgio_tools,\
17    $$(INCLUDE) \
18    -I$(SRCDIR)/svgio/inc \
19))
20
21$(eval $(call gb_CppunitTest_use_externals,svgio_tools,\
22    boost_headers \
23))
24
25$(eval $(call gb_CppunitTest_use_library_objects,svgio_tools,\
26    svgio \
27))
28
29$(eval $(call gb_CppunitTest_use_libraries,svgio_tools,\
30    basegfx \
31    drawinglayer \
32    comphelper \
33    cppu \
34    cppuhelper \
35    sal \
36    sax \
37    svt \
38    tk \
39    tl \
40    vcl \
41))
42
43# vim: set noet sw=4 ts=4:
44