63972e79bb
The revert commits change the build-tools target for a DESKTOP build to build the complete LO. This restores the original, minimal one and also adds a whitelist of allowd build types. OpenCL needs a configure switch, as it's status is also stored in a config header, so preventing the build is not enough. This also reverts: - commit802161a505
- commit02d931a59e
Change-Id: Ibfcb0c54e72da1b7c2e63c082ea6586520a787fa Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102480 Tested-by: Jenkins Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
35 lines
794 B
Makefile
35 lines
794 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,unotest))
|
|
|
|
ifeq ($(gb_Side),host)
|
|
ifneq (,$(filter DESKTOP,$(BUILD_TYPE)))
|
|
$(eval $(call gb_Module_add_targets,unotest,\
|
|
Library_unobootstrapprotector \
|
|
Library_unoexceptionprotector \
|
|
Library_unotest \
|
|
))
|
|
endif
|
|
|
|
ifneq ($(ENABLE_JAVA),)
|
|
$(eval $(call gb_Module_add_targets,unotest,\
|
|
Jar_test-tools \
|
|
))
|
|
|
|
ifneq ($(OOO_JUNIT_JAR),)
|
|
$(eval $(call gb_Module_add_targets,unotest,\
|
|
Jar_test \
|
|
))
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
# vim: set noet sw=4 ts=4:
|