Merge pull request #553 from kiwix/fix_wasm_packaging

This commit is contained in:
Matthieu Gautier 2022-11-30 12:17:06 +01:00 committed by GitHub
commit 67a20fd576
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -93,7 +93,8 @@ EXPORT_FILES = {
"libzim": (
INSTALL_DIR,
(
"lib/*/libzim.a",
# We need to package all dependencies (`*.a`) on wasm
"lib/*/libzim.a" if PLATFORM_TARGET != "wasm" else "lib/*/*.a",
"lib/*/libzim.so",
"lib/*/libzim.so.{version}".format(
version=main_project_versions["libzim"]