2011-08-10 02:12:48 +09:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2011-03-28 01:24:42 +02:00
|
|
|
#
|
2013-04-19 21:10:42 +01:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-03-28 01:24:42 +02: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/.
|
2011-03-28 01:24:42 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Module_Module,chart2))
|
|
|
|
|
2011-04-15 10:35:13 +02:00
|
|
|
$(eval $(call gb_Module_add_targets,chart2,\
|
|
|
|
Library_chartcontroller \
|
2012-08-03 17:39:56 +01:00
|
|
|
Library_chartcore \
|
2011-04-15 10:35:13 +02:00
|
|
|
))
|
2016-08-03 22:12:29 +03:00
|
|
|
ifeq ($(ENABLE_HEADLESS),)
|
2016-03-23 13:40:13 +01:00
|
|
|
$(eval $(call gb_Module_add_targets,chart2,\
|
|
|
|
Library_chartopengl \
|
|
|
|
Package_opengl \
|
|
|
|
))
|
|
|
|
endif
|
2011-04-15 10:35:13 +02:00
|
|
|
|
2013-11-13 02:12:48 +01:00
|
|
|
$(eval $(call gb_Module_add_l10n_targets,chart2,\
|
|
|
|
AllLangResTarget_chartcontroller \
|
2013-12-16 16:51:35 +01:00
|
|
|
UIConfig_chart2 \
|
2013-11-13 02:12:48 +01:00
|
|
|
))
|
|
|
|
|
2017-06-23 21:38:25 +02:00
|
|
|
ifneq ($(OS),IOS)
|
2015-09-08 03:18:32 +02:00
|
|
|
$(eval $(call gb_Module_add_check_targets,chart2,\
|
|
|
|
CppunitTest_chart2_common_functors \
|
|
|
|
))
|
|
|
|
|
2013-04-22 10:38:46 +02:00
|
|
|
$(eval $(call gb_Module_add_slowcheck_targets,chart2,\
|
2013-05-13 15:01:55 +02:00
|
|
|
CppunitTest_chart2_export \
|
2013-05-14 19:10:51 +02:00
|
|
|
CppunitTest_chart2_import \
|
2015-06-22 11:41:43 +02:00
|
|
|
CppunitTest_chart2_trendcalculators \
|
2017-02-12 16:04:58 +01:00
|
|
|
CppunitTest_chart2_dump \
|
2017-02-26 22:48:06 +01:00
|
|
|
CppunitTest_chart2_pivot_chart_test \
|
2013-04-22 10:38:46 +02:00
|
|
|
))
|
|
|
|
|
2014-04-03 01:05:29 +02:00
|
|
|
ifeq ($(ENABLE_CHART_TESTS),TRUE)
|
2017-03-12 22:46:49 +01:00
|
|
|
ifeq ($(WITH_FONTS), TRUE)
|
2014-04-03 01:05:29 +02:00
|
|
|
$(eval $(call gb_Module_add_slowcheck_targets,chart2,\
|
|
|
|
CppunitTest_chart2_xshape \
|
|
|
|
))
|
2017-03-12 22:46:49 +01:00
|
|
|
endif
|
2014-04-03 01:05:29 +02:00
|
|
|
endif
|
|
|
|
|
2013-04-22 10:38:46 +02:00
|
|
|
$(eval $(call gb_Module_add_subsequentcheck_targets,chart2,\
|
2011-03-28 01:24:42 +02:00
|
|
|
JunitTest_chart2_unoapi \
|
|
|
|
))
|
|
|
|
|
2016-08-17 09:43:33 +02:00
|
|
|
# screenshots
|
|
|
|
$(eval $(call gb_Module_add_screenshot_targets,chart2,\
|
2016-07-22 15:08:31 +02:00
|
|
|
CppunitTest_chart2_dialogs_test \
|
|
|
|
))
|
2017-06-23 21:38:25 +02:00
|
|
|
endif
|
2016-07-22 15:08:31 +02:00
|
|
|
|
2011-07-30 23:01:11 +03:00
|
|
|
# vim: set noet sw=4 ts=4:
|