From e9c59b5c3198c02da770583dace728b8c9a121aa Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Tue, 24 Nov 2020 15:45:24 +0100 Subject: [PATCH] Add gst-launch-1.0.exe to windows setup --- .github/workflows/ccpp.yml | 2 +- dist/windows/strawberry.nsi.in | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) 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"