2014-06-09 11:33:25 +01:00
|
|
|
# -*- 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))
|
|
|
|
|
2015-09-15 15:58:51 +02:00
|
|
|
ifeq ($(OS), $(filter LINUX %BSD SOLARIS, $(OS)))
|
2014-06-13 11:20:15 +01:00
|
|
|
|
2015-11-10 13:20:42 +01:00
|
|
|
$(eval $(call gb_Module_add_check_targets,libreofficekit, \
|
|
|
|
CppunitTest_libreofficekit_checkapi \
|
|
|
|
))
|
|
|
|
|
2015-03-10 18:14:43 +01:00
|
|
|
$(eval $(call gb_Module_add_subsequentcheck_targets,libreofficekit,\
|
2015-03-03 11:13:32 +01:00
|
|
|
CppunitTest_libreofficekit_tiledrendering \
|
|
|
|
))
|
2014-07-11 09:12:27 +02:00
|
|
|
|
2015-06-10 16:18:06 +05:30
|
|
|
ifneq ($(ENABLE_GTK3),)
|
2014-06-13 11:20:15 +01:00
|
|
|
$(eval $(call gb_Module_add_targets,libreofficekit,\
|
2014-06-26 10:13:23 +01:00
|
|
|
Library_libreofficekitgtk \
|
2014-06-13 11:20:15 +01:00
|
|
|
Executable_gtktiledviewer \
|
2014-10-01 22:14:49 +01:00
|
|
|
Executable_tilebench \
|
2016-01-19 18:34:56 +05:30
|
|
|
Package_selectionhandles \
|
2014-10-01 22:14:49 +01:00
|
|
|
))
|
2015-06-10 16:18:06 +05:30
|
|
|
endif # ($(ENABLE_GTK3),)
|
2014-10-01 22:14:49 +01:00
|
|
|
|
2015-09-15 15:58:51 +02:00
|
|
|
endif
|
2014-06-09 11:33:25 +01:00
|
|
|
|
|
|
|
# vim: set ts=4 sw=4 et:
|