Ops, mistake in installer.

This commit is contained in:
Daniel Önnerby 2009-01-28 23:23:48 +00:00
parent 960918a130
commit 7329761da4

View File

@ -47,15 +47,15 @@ Section "!mC2" main
SetOverwrite on SetOverwrite on
SetOutPath "$INSTDIR" SetOutPath "$INSTDIR"
File /r "..\bin\release\mC2.exe" File "..\bin\release\mC2.exe"
File /r "..\LICENSE.txt" File "..\LICENSE.txt"
File /r "..\bin\release\resources" File /r "..\bin\release\resources"
SetOutPath "$INSTDIR\plugins" SetOutPath "$INSTDIR\plugins"
Delete "*.dll" Delete "*.dll"
File /r "..\bin\release\plugins\httpstream_plugin.dll" File "..\bin\release\plugins\httpstream_plugin.dll"
File /r "..\bin\release\plugins\waveout.dll" File "..\bin\release\plugins\waveout.dll"
File /r "..\bin\release\plugins\taglib_plugin.dll" File "..\bin\release\plugins\taglib_plugin.dll"
IntCmpU $RemoveOldDatabases 0 DoNotRemoveDBFiles IntCmpU $RemoveOldDatabases 0 DoNotRemoveDBFiles
; Remove the app data ; Remove the app data
@ -71,30 +71,30 @@ Section "musikServer"
SetShellVarContext current SetShellVarContext current
SetOverwrite on SetOverwrite on
SetOutPath "$INSTDIR" SetOutPath "$INSTDIR"
File /r "..\bin\release\musikServer.exe" File "..\bin\release\musikServer.exe"
CreateShortCut "$SMPROGRAMS\${PROJECT_NAME} ${SUB_NAME}\musikServer.lnk" "$INSTDIR\musikServer.exe" CreateShortCut "$SMPROGRAMS\${PROJECT_NAME} ${SUB_NAME}\musikServer.lnk" "$INSTDIR\musikServer.exe"
SectionEnd SectionEnd
SubSection Plugins plugins SubSection Plugins plugins
Section "MP3 decoder" Section "MP3 decoder"
SetOutPath "$INSTDIR\plugins" SetOutPath "$INSTDIR\plugins"
File /r "..\bin\release\plugins\mpg123decoder.dll" File "..\bin\release\plugins\mpg123decoder.dll"
SectionEnd SectionEnd
Section "OGG decoder" Section "OGG decoder"
SetOutPath "$INSTDIR\plugins" SetOutPath "$INSTDIR\plugins"
File /r "..\bin\release\plugins\oggdecoder.dll" File "..\bin\release\plugins\oggdecoder.dll"
SectionEnd SectionEnd
Section "FLAC decoder" Section "FLAC decoder"
SetOutPath "$INSTDIR\plugins" SetOutPath "$INSTDIR\plugins"
File /r "..\bin\release\plugins\flacdecoder.dll" File "..\bin\release\plugins\flacdecoder.dll"
SectionEnd SectionEnd
Section /o "BPM analyzer" Section /o "BPM analyzer"
SetOutPath "$INSTDIR\plugins" SetOutPath "$INSTDIR\plugins"
File /r "..\bin\release\plugins\bpm_analyzer.dll" File "..\bin\release\plugins\bpm_analyzer.dll"
SectionEnd SectionEnd
Section /o "DSP echo test" Section /o "DSP echo test"
SetOutPath "$INSTDIR\plugins" SetOutPath "$INSTDIR\plugins"
File /r "..\bin\release\plugins\dsp_example_echo.dll" File "..\bin\release\plugins\dsp_example_echo.dll"
SectionEnd SectionEnd
SubSectionEnd SubSectionEnd