unotest/Library_embindtest.mk | 6 ++++++ 1 file changed, 6 insertions(+)
New commits: commit a24a534ad05472a2fae03b85ff650f30efe66d2d Author: Stephan Bergmann <[email protected]> AuthorDate: Wed Jul 17 09:26:34 2024 +0200 Commit: Stephan Bergmann <[email protected]> CommitDate: Wed Jul 17 11:04:26 2024 +0200 Missing gb_Library_use_libraries,embindtest ...which went unnoticed for this Emscripten-only library due to the static nature of the Emscripten build, but is probably better to do properly anyway Change-Id: Ie0e0b463057fbc60e17741f362a129f784f7154d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/170603 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <[email protected]> diff --git a/unotest/Library_embindtest.mk b/unotest/Library_embindtest.mk index b485bcd7ea83..e71fedc069dd 100644 --- a/unotest/Library_embindtest.mk +++ b/unotest/Library_embindtest.mk @@ -15,6 +15,12 @@ $(eval $(call gb_Library_add_exception_objects,embindtest, \ $(eval $(call gb_Library_set_componentfile,embindtest,unotest/source/embindtest/embindtest,services)) +$(eval $(call gb_Library_use_libraries,embindtest, \ + cppu \ + cppuhelper \ + sal \ +)) + $(eval $(call gb_Library_use_sdk_api,embindtest)) # vim: set noet sw=4 ts=4:
