office-gobmx/jvmfwk/Module_jvmfwk.mk
Stephan Bergmann 395ecf1ed3 Turn OSL_DEBUG_LEVEL >= 2 SelfTest into CppunitTest
...and move "10.0", "10.10", and "1.5.0_010" from badVersions[] to good
versions[] to make the test succeed (assuming these shall indeed be classified
as good by now, presumably due to changes to the SunVersion implementation in
the meantime)

Change-Id: Ia7cf9b0e607743a5e0534078c0221c1423f6cfb3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118570
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2021-07-08 08:05:26 +02:00

37 lines
884 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,jvmfwk))
ifeq ($(ENABLE_JAVA),TRUE)
$(eval $(call gb_Module_add_targets,jvmfwk,\
CustomTarget_jreproperties \
CustomTarget_jvmfwk_jvmfwk3_ini \
Library_jvmfwk \
Package_jreproperties \
Package_jvmfwk_jvmfwk3_ini \
Package_rcfiles \
))
ifneq (,$(filter-out MACOSX WNT,$(OS)))
ifneq (,$(filter DESKTOP,$(BUILD_TYPE)))
$(eval $(call gb_Module_add_targets,jvmfwk,\
Executable_javaldx \
))
endif
endif
$(eval $(call gb_Module_add_check_targets,jvmfwk, \
CppunitTest_jvmfwk_sunversion \
))
endif
# vim:set noet sw=4 ts=4: