forked from amazingfate/loongoffice
There is no obvious authoritative upstream for clew anyway, so it causes philosophical problems for distros. For a while, we used to use a zip archive from the "clcc" project on SourceForge that included clew.c and clew.h. (Before that we also just had clew.c and clew.h in our source repo.) So, drop the external/clcc module and have clew.c and clew.h in the source repo again. But this time clew is in a module of its own, not in sc. This re-introduces "No need to have OpenCL optional at configure-time" This reverts commit 764836cb00e8e6dfd2ab48e080a166ec90359e01. Change-Id: I413142f4f9f8399489f9c3e5327132822f07a454 Reviewed-on: https://gerrit.libreoffice.org/13368 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
94 lines
2.3 KiB
Makefile
94 lines
2.3 KiB
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,sc))
|
|
|
|
$(eval $(call gb_Module_add_targets,sc,\
|
|
Library_sc \
|
|
Library_scd \
|
|
Library_scfilt \
|
|
$(call gb_Helper_optional,DESKTOP,Library_scui) \
|
|
))
|
|
|
|
$(eval $(call gb_Module_add_l10n_targets,sc,\
|
|
AllLangResTarget_sc \
|
|
UIConfig_scalc \
|
|
))
|
|
|
|
ifneq (,$(filter DESKTOP,$(BUILD_TYPE)))
|
|
$(eval $(call gb_Module_add_targets,sc,\
|
|
Library_scqahelper \
|
|
))
|
|
endif
|
|
|
|
ifeq ($(ENABLE_TELEPATHY),TRUE)
|
|
|
|
$(eval $(call gb_Module_add_targets,sc,\
|
|
CustomTarget_uiconfig \
|
|
))
|
|
|
|
endif
|
|
|
|
ifneq ($(filter SCRIPTING,$(BUILD_TYPE)),)
|
|
|
|
$(eval $(call gb_Module_add_targets,sc,\
|
|
Library_vbaobj \
|
|
))
|
|
|
|
endif
|
|
|
|
$(eval $(call gb_Module_add_check_targets,sc,\
|
|
CppunitTest_sc_ucalc \
|
|
CppunitTest_sc_filters_test \
|
|
CppunitTest_sc_rangelst_test \
|
|
))
|
|
|
|
$(eval $(call gb_Module_add_slowcheck_targets,sc, \
|
|
CppunitTest_sc_subsequent_filters_test \
|
|
CppunitTest_sc_subsequent_export_test \
|
|
CppunitTest_sc_html_export_test \
|
|
CppunitTest_sc_opencl_test \
|
|
))
|
|
|
|
# Disabled to allow the check tinderbox execute the sd tests
|
|
# CppunitTest_sc_chart_regression_test \
|
|
# FIXME_REMOVE_WHEN_RE_BASE_COMPLETE
|
|
# CppunitTest_sc_annotationshapeobj \
|
|
|
|
$(eval $(call gb_Module_add_subsequentcheck_targets,sc,\
|
|
JunitTest_sc_complex \
|
|
JunitTest_sc_unoapi \
|
|
CppunitTest_sc_outlineobj \
|
|
CppunitTest_sc_styleloaderobj \
|
|
CppunitTest_sc_annotationobj \
|
|
CppunitTest_sc_annotationsobj \
|
|
CppunitTest_sc_cellrangeobj \
|
|
$(if $(filter-out $(OS),IOS), \
|
|
CppunitTest_sc_databaserangeobj) \
|
|
CppunitTest_sc_datapilottableobj \
|
|
CppunitTest_sc_datapilotfieldobj \
|
|
CppunitTest_sc_macros_test \
|
|
CppunitTest_sc_namedrangeobj \
|
|
CppunitTest_sc_namedrangesobj \
|
|
CppunitTest_sc_tablesheetobj \
|
|
CppunitTest_sc_tablesheetsobj \
|
|
CppunitTest_sc_editfieldobj_cell \
|
|
CppunitTest_sc_editfieldobj_header \
|
|
CppunitTest_sc_modelobj \
|
|
))
|
|
|
|
$(eval $(call gb_Module_add_perfcheck_targets,sc,\
|
|
CppunitTest_sc_perfobj \
|
|
CppunitTest_sc_tablesheetobj \
|
|
))
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|