1# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- 2# 3# 4# This file is part of the LibreOffice project. 5# 6# This Source Code Form is subject to the terms of the Mozilla Public 7# License, v. 2.0. If a copy of the MPL was not distributed with this 8# file, You can obtain one at http://mozilla.org/MPL/2.0/. 9# 10 11$(eval $(call gb_Jar_Jar,TestExtension)) 12 13$(eval $(call gb_Jar_set_manifest,TestExtension,$(SRCDIR)/smoketest/com/sun/star/comp/smoketest/MANIFEST.MF)) 14 15$(eval $(call gb_Jar_add_manifest_classpath,TestExtension,\ 16 juh.jar \ 17 jurt.jar \ 18 ridl.jar \ 19 unoil.jar \ 20)) 21 22$(eval $(call gb_Jar_use_jars,TestExtension,\ 23 juh \ 24 jurt \ 25 ridl \ 26 unoil \ 27)) 28 29$(eval $(call gb_Jar_set_packageroot,TestExtension,com)) 30 31$(eval $(call gb_Jar_add_sourcefiles,TestExtension,\ 32 smoketest/com/sun/star/comp/smoketest/TestExtension \ 33)) 34 35# vim: set noet sw=4 ts=4: 36