diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 63497bf1d..88caf2947 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -1247,7 +1247,7 @@ jobs: - name: Copy extra binaries working-directory: build - run: cp /usr/src/strawberry-mxe/usr/x86_64-w64-mingw32.shared/bin/{sqlite3.exe,killproc.exe} . + run: cp /usr/src/strawberry-mxe/usr/x86_64-w64-mingw32.shared/bin/{sqlite3.exe,killproc.exe,gst-launch-1.0.exe} . - name: Copy dependencies working-directory: build diff --git a/dist/windows/strawberry.nsi.in b/dist/windows/strawberry.nsi.in index c5a6e943d..64ca2d4cf 100644 --- a/dist/windows/strawberry.nsi.in +++ b/dist/windows/strawberry.nsi.in @@ -175,6 +175,7 @@ Section "Strawberry" Strawberry File "strawberry-tagreader.exe" File "strawberry.ico" File "sqlite3.exe" + File "gst-launch-1.0.exe" !ifdef arch_x86 File "libgcc_s_sjlj-1.dll" @@ -443,6 +444,7 @@ Section "Uninstall" Delete "$INSTDIR\strawberry.exe" Delete "$INSTDIR\strawberry-tagreader.exe" Delete "$INSTDIR\sqlite3.exe" + Delete "$INSTDIR\gst-launch-1.0.exe" !ifdef arch_x86 Delete "$INSTDIR\libgcc_s_sjlj-1.dll"