diff options
author | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2024-07-17 09:26:34 +0200 |
---|---|---|
committer | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2024-07-17 11:04:26 +0200 |
commit | a24a534ad05472a2fae03b85ff650f30efe66d2d (patch) | |
tree | 3c297deea1ddd7a9d477afae4d2075378fad3d9a /unotest/Library_embindtest.mk | |
parent | 84d63cfccf7af8f2b3b689ab0e622f8b408eb470 (diff) |
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 <stephan.bergmann@allotropia.de>
Diffstat (limited to 'unotest/Library_embindtest.mk')
-rw-r--r-- | unotest/Library_embindtest.mk | 6 |
1 files changed, 6 insertions, 0 deletions
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: |