From f2518baef90ef467ea532237c7937746a233f8f7 Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Thu, 20 Jun 2024 23:39:23 +0200 Subject: [PATCH] nsi: Add spotify plugin for MSVC --- dist/windows/strawberry.nsi.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dist/windows/strawberry.nsi.in b/dist/windows/strawberry.nsi.in index c407869ac..47138c201 100644 --- a/dist/windows/strawberry.nsi.in +++ b/dist/windows/strawberry.nsi.in @@ -763,6 +763,9 @@ Section "Gstreamer plugins" gstreamer-plugins File "/oname=gstwavpack.dll" "gstreamer-plugins\gstwavpack.dll" File "/oname=gstwavparse.dll" "gstreamer-plugins\gstwavparse.dll" File "/oname=gstxingmux.dll" "gstreamer-plugins\gstxingmux.dll" +!ifdef arch_x64 + File "/oname=gstspotify.dll" "gstreamer-plugins\gstspotify.dll" +!endif !endif ; MSVC SectionEnd @@ -1265,6 +1268,9 @@ Section "Uninstall" Delete "$INSTDIR\gstreamer-plugins\gstwavpack.dll" Delete "$INSTDIR\gstreamer-plugins\gstwavparse.dll" Delete "$INSTDIR\gstreamer-plugins\gstxingmux.dll" +!ifdef arch_x64 + Delete "$INSTDIR\gstreamer-plugins\gstspotify.dll" +!endif !endif ; msvc Delete "$INSTDIR\Uninstall.exe"