Skip to content

Commit

Permalink
#688 - Include missing dlls and gdbus.exe in the zip and installer
Browse files Browse the repository at this point in the history
  • Loading branch information
olabini committed Sep 13, 2021
1 parent c28bd6e commit 25f2bfb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -288,6 +288,7 @@ jobs:
mkdir -p release/lib
export LDIR=/mingw64/bin
cp $LDIR/gdbus.exe release
cp $LDIR/libatk-1.0-0.dll release
cp $LDIR/libbz2-1.dll release
cp $LDIR/libbrotlicommon.dll release
Expand All @@ -314,6 +315,7 @@ jobs:
cp $LDIR/libiconv-2.dll release
cp $LDIR/libintl-8.dll release
cp $LDIR/libjpeg-8.dll release
cp $LDIR/liblzma-5.dll release
cp $LDIR/libpango-1.0-0.dll release
cp $LDIR/libpangocairo-1.0-0.dll release
cp $LDIR/libpangoft2-1.0-0.dll release
Expand All @@ -328,6 +330,7 @@ jobs:
cp $LDIR/libtiffxx-5.dll release
cp $LDIR/libturbojpeg.dll release
cp $LDIR/libwinpthread-1.dll release
cp $LDIR/libxml2-2.dll release
cp $LDIR/zlib1.dll release
cp -r /mingw64/lib/gdk-pixbuf-2.0 release/lib
Expand Down
2 changes: 2 additions & 0 deletions build/windows/installer_definition.nsi
Expand Up @@ -40,6 +40,7 @@ Section "CoyIM"
SectionIn 1 RO

File /oname=CoyIM.exe win_installer\coyim_windows_amd64.exe
File win_installer\gdbus.exe
File win_installer\toast.exe
File win_installer\*.dll
File /r win_installer\lib
Expand All @@ -62,6 +63,7 @@ SectionEnd
Section "Uninstall"
Delete "$INSTDIR\CoyIM.exe"
Delete "$INSTDIR\toast.exe"
Delete "$INSTDIR\gdbus.dll"
Delete "$INSTDIR\*.dll"
RMDir /r "$INSTDIR\lib"
RMDir /r "$INSTDIR\share"
Expand Down

1 comment on commit 25f2bfb

@IvanJijon
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed by the team, OK.

Please sign in to comment.