diff options
author | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2024-06-07 12:19:52 +0200 |
---|---|---|
committer | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2024-06-07 13:30:31 +0200 |
commit | 82640810efd1636e358c047a1a5b3e4e3fc9d28a (patch) | |
tree | 5f39ecb3d9ad6f79b65af13f91d9580d0a08a2d7 /desktop/Executable_soffice_bin.mk | |
parent | bff196c0d34f540f459ced613ac379a730f46149 (diff) |
New EMSCRIPTEN_EXTRA_SOFFICE_POST_JS configure variable
...which can be useful during development, to add e.g. additional test code to
the generated qt_soffice.html
Change-Id: Ic498dcd4c812b7b4c8e48b07c2bff411a9f19438
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/168522
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de>
Diffstat (limited to 'desktop/Executable_soffice_bin.mk')
-rw-r--r-- | desktop/Executable_soffice_bin.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/desktop/Executable_soffice_bin.mk b/desktop/Executable_soffice_bin.mk index 0d3ac520c398..b9ce457abbc0 100644 --- a/desktop/Executable_soffice_bin.mk +++ b/desktop/Executable_soffice_bin.mk @@ -84,6 +84,12 @@ $(eval $(call gb_Executable_add_ldflags,soffice_bin, \ endif +$(call gb_Executable_get_linktarget_target,soffice_bin): $(EMSCRIPTEN_EXTRA_SOFFICE_POST_JS) + +$(eval $(call gb_Executable_add_ldflags,soffice_bin, \ + $(foreach i,$(EMSCRIPTEN_EXTRA_SOFFICE_POST_JS),--post-js $(i)) \ +)) + endif # vim: set ts=4 sw=4 et: |