Add sqlite3.exe to nsi

This commit is contained in:
Jonas Kvinge 2020-09-11 22:58:56 +02:00
parent 7501131558
commit 9221797c9d
2 changed files with 2 additions and 1 deletions

View File

@ -174,6 +174,7 @@ Section "Strawberry" Strawberry
File "strawberry.exe"
File "strawberry-tagreader.exe"
File "strawberry.ico"
File "sqlite3.exe"
!ifdef arch_x86
File "libgcc_s_sjlj-1.dll"
@ -425,6 +426,7 @@ Section "Uninstall"
Delete "$INSTDIR\strawberry.ico"
Delete "$INSTDIR\strawberry.exe"
Delete "$INSTDIR\strawberry-tagreader.exe"
Delete "$INSTDIR\sqlite3.exe"
!ifdef arch_x86
Delete "$INSTDIR\libgcc_s_sjlj-1.dll"

View File

@ -111,4 +111,3 @@ void GstStartup::SetEnvironment() {
Utilities::SetEnv("PULSE_PROP_media.role", "music");
}