Skip to content

Commit

Permalink
Merge pull request #734 from kiwix/icu_dll
Browse files Browse the repository at this point in the history
  • Loading branch information
mgautierfr authored Aug 28, 2024
2 parents 31aee27 + 244e4d2 commit 3eefbf7
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/scripts/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ def major_version(version: str) -> str:
EXPORT_FILES = {
"kiwix-tools": (
INSTALL_DIR / "bin",
[f + BIN_EXT for f in ("kiwix-manage", "kiwix-search", "kiwix-serve")],
[f + BIN_EXT for f in ("kiwix-manage", "kiwix-search", "kiwix-serve")]
+ ["icu*.dll"],
),
"zim-tools": (
INSTALL_DIR / "bin",
Expand All @@ -90,7 +91,8 @@ def major_version(version: str) -> str:
"zimwriterfs",
"zimrecreate",
)
],
]
+ ["icu*.dll"],
),
"libzim": (
INSTALL_DIR,
Expand All @@ -110,6 +112,7 @@ def major_version(version: str) -> str:
"bin/zim-{version}.dll".format(
version=major_version(main_project_versions["libzim"])
),
"bin/icu*.dll",
"bin/zim-{version}.pdb".format(
version=major_version(main_project_versions["libzim"])
),
Expand All @@ -134,6 +137,7 @@ def major_version(version: str) -> str:
"lib/libkiwix.{}.dylib".format(
major_version(main_project_versions["libkiwix"])
),
"bin/icu*.dll",
"lib/libkiwix.dylib",
"lib/*/libkiwix.pc",
"include/kiwix/**/*.h",
Expand Down

0 comments on commit 3eefbf7

Please sign in to comment.