office-gobmx/shell/Library_syssh.mk
Jan-Marek Glogowski 972aa39fb9 WASM open links in new browser tabs
I quickly gave up trying to understand what exactly clashes
between the Emscripten macros and OUString templates /
initializers. Not sure it can actually be "fixed".

Also disables the makeshared clang compilerplugin; currently
there is no way to get rid of all the false positive hits
when assigning the std::shared_ptr from a function instead of
a constructor call.

Change-Id: I8b13f179629ea63ff221584030556d2bedadc01b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128604
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
2022-01-20 10:26:04 +01:00

54 lines
1.2 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,syssh))
$(eval $(call gb_Library_use_sdk_api,syssh))
$(eval $(call gb_Library_use_libraries,syssh,\
cppu \
cppuhelper \
comphelper \
sal \
))
ifeq ($(OS),WNT)
$(eval $(call gb_Library_use_system_win32_libs,syssh,\
ole32 \
shell32 \
))
$(eval $(call gb_Library_set_componentfile,syssh,shell/source/win32/syssh,services))
$(eval $(call gb_Library_add_exception_objects,syssh,\
shell/source/win32/SysShExec \
))
else # OS != WNT
$(eval $(call gb_Library_use_static_libraries,syssh,\
shell_xmlparser \
))
$(eval $(call gb_Library_set_componentfile,syssh,shell/source/unix/exec/syssh,services))
$(eval $(call gb_Library_add_exception_objects,syssh,\
shell/source/unix/exec/shellexec \
))
ifeq ($(OS),EMSCRIPTEN)
$(eval $(call gb_Library_add_exception_objects,syssh,\
shell/source/unix/exec/shellexec_em \
))
endif
endif # OS
# vim: set shiftwidth=4 tabstop=4 noexpandtab: