Files
libreoffice/libreofficekit/Module_libreofficekit.mk
Miklos Vajna 3687ae6f03 CppunitTest_libreofficekit_tiledrendering: fix up and enable this again
The main problem was that UserInstallation did not point to the usual
workdir/unittest/, so initialization failed early, not finding the
soffice.cfg directory under
workdir/CppunitTest/libreofficekit_tiledrendering.test.user/.

Disable one testcase that still fails, though.

Change-Id: I3fdae5ead47dd2a805a0ed8d3cb407938f868e3b
2015-03-09 10:16:11 +01:00

32 lines
805 B
Makefile

# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
# This file is part of the LibreOffice project.
#
# 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/.
#
$(eval $(call gb_Module_Module,libreofficekit))
ifeq ($(OS),LINUX)
$(eval $(call gb_Module_add_slowcheck_targets,libreofficekit,\
CppunitTest_libreofficekit_tiledrendering \
))
ifneq ($(ENABLE_GTK),)
$(eval $(call gb_Module_add_targets,libreofficekit,\
Library_libreofficekitgtk \
Executable_gtktiledviewer \
))
$(eval $(call gb_Module_add_targets,libreofficekit,\
Executable_tilebench \
))
endif # ($(ENABLE_GTK),)
endif # ($(OS),LINUX)
# vim: set ts=4 sw=4 et: