mirror of
https://github.com/LibreOffice/core.git
synced 2025-07-29 21:00:46 +00:00

The change is most important for Viewer app mode, which also disables macros Change-Id: Ie305649dafbb3717e7986a4b437c38b09ffc1802 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/178275 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
44 lines
1.1 KiB
Makefile
44 lines
1.1 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_Library_Library,protocolhandler))
|
|
|
|
$(eval $(call gb_Library_set_componentfile,protocolhandler,scripting/source/protocolhandler/protocolhandler,services))
|
|
|
|
$(eval $(call gb_Library_set_include,protocolhandler,\
|
|
$$(INCLUDE) \
|
|
-I$(SRCDIR)/scripting/source/inc \
|
|
))
|
|
|
|
$(eval $(call gb_Library_use_external,protocolhandler,boost_headers))
|
|
|
|
$(eval $(call gb_Library_use_sdk_api,protocolhandler))
|
|
|
|
$(eval $(call gb_Library_use_custom_headers,protocolhandler,\
|
|
officecfg/registry \
|
|
))
|
|
|
|
$(eval $(call gb_Library_use_libraries,protocolhandler,\
|
|
comphelper \
|
|
cppu \
|
|
cppuhelper \
|
|
fwk \
|
|
sal \
|
|
sfx \
|
|
tl \
|
|
utl \
|
|
vcl \
|
|
))
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,protocolhandler,\
|
|
scripting/source/protocolhandler/scripthandler \
|
|
))
|
|
|
|
# vim: set noet sw=4 ts=4:
|