diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:51:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:51:28 +0000 |
commit | 940b4d1848e8c70ab7642901a68594e8016caffc (patch) | |
tree | eb72f344ee6c3d9b80a7ecc079ea79e9fba8676d /desktop/Executable_soffice_bin.mk | |
parent | Initial commit. (diff) | |
download | libreoffice-940b4d1848e8c70ab7642901a68594e8016caffc.tar.xz libreoffice-940b4d1848e8c70ab7642901a68594e8016caffc.zip |
Adding upstream version 1:7.0.4.upstream/1%7.0.4upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'desktop/Executable_soffice_bin.mk')
-rw-r--r-- | desktop/Executable_soffice_bin.mk | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/desktop/Executable_soffice_bin.mk b/desktop/Executable_soffice_bin.mk new file mode 100644 index 000000000..5c895ed0e --- /dev/null +++ b/desktop/Executable_soffice_bin.mk @@ -0,0 +1,56 @@ +# -*- 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_Executable_Executable,soffice_bin)) + +$(eval $(call gb_Executable_set_include,soffice_bin,\ + $$(INCLUDE) \ + -I$(SRCDIR)/desktop/source/inc \ +)) + +$(eval $(call gb_Executable_use_libraries,soffice_bin,\ + sal \ + sofficeapp \ +)) + +$(eval $(call gb_Executable_add_cobjects,soffice_bin,\ + desktop/source/app/main \ +)) + +ifeq ($(OS),MACOSX) +# At least when building against SDK 10.15, changing the LC_VERSION_MIN_MACOSX load command's sdk +# value from 10.15 to "n/a" (i.e., 0.0.0) is necessary to avoid blurry text in the LO UI (see +# <https://github.com/llvm/llvm-project/commit/25ce33a6e4f3b13732c0f851e68390dc2acb9123> +# "[driver][darwin] Pass -platform_version flag to the linker instead of the +# -<platform>_version_min flag", clang/test/Driver/darwin-ld-platform-version-macos.c in particular, +# for the -platform_version that Clang passes by default to new-enough ld): +$(eval $(call gb_Executable_add_ldflags,soffice_bin, \ + -Xlinker -platform_version -Xlinker macos -Xlinker $(MACOSX_DEPLOYMENT_TARGET) -Xlinker 0.0.0 \ +)) +endif + +ifeq ($(OS),WNT) + +$(eval $(call gb_Executable_set_targettype_gui,soffice_bin,NO)) + +$(eval $(call gb_Executable_add_nativeres,soffice_bin,sofficebin/officeloader)) + +$(eval $(call gb_Executable_add_default_nativeres,soffice_bin,$(PRODUCTNAME))) + +ifeq ($(COM),MSC) + +$(eval $(call gb_Executable_add_ldflags,soffice_bin,\ + /STACK:10000000 \ +)) + +endif + +endif + +# vim: set ts=4 sw=4 et: |