fix exports

This commit is contained in:
Ron Pedde 2006-05-04 06:39:38 +00:00
parent 4440ac7013
commit c29f829c31
2 changed files with 9 additions and 2 deletions

View File

@ -93,7 +93,8 @@ Section "MainSection" SEC01
File "${DLL_SOURCE}\zlib1.dll" File "${DLL_SOURCE}\zlib1.dll"
SetOutPath "$2\plugins" SetOutPath "$2\plugins"
File "..\Release\rsp.dll" File "${MTD_SOURCE}\rsp.dll"
File "${MTD_SOURCE}\w32-event.dll"
SetOutPath "$2\admin-root" SetOutPath "$2\admin-root"
File "${ADMIN_ROOT}\thanks.html" File "${ADMIN_ROOT}\thanks.html"
@ -143,6 +144,8 @@ Section "MainSection" SEC01
CopyFiles "$2\mt-daapd-example.conf" "$2\mt-daapd.conf" CopyFiles "$2\mt-daapd-example.conf" "$2\mt-daapd.conf"
WriteINIStr "$2\mt-daapd.conf" "general" "mp3_dir" $3 WriteINIStr "$2\mt-daapd.conf" "general" "mp3_dir" $3
HasConf: HasConf:
WriteINIStr "$2\mt-daapd.conf" "plugins" "plugin_dir" "plugins"
WriteINIStr "$2\mt-daapd.conf" "plugins" "plugins" "rsp.dll,w32-event.dll"
SetAutoClose False SetAutoClose False
SectionEnd SectionEnd
@ -364,6 +367,7 @@ Section Uninstall
Delete "$INSTDIR\mt-daapd.conf" Delete "$INSTDIR\mt-daapd.conf"
Delete "$INSTDIR\zlib1.dll" Delete "$INSTDIR\zlib1.dll"
Delete "$INSTDIR\plugins\rsp.dll" Delete "$INSTDIR\plugins\rsp.dll"
Delete "$INSTDIR\plugins\w32-event.dll"
Delete "$INSTDIR\songs.db" Delete "$INSTDIR\songs.db"
Delete "$INSTDIR\songs3.db" Delete "$INSTDIR\songs3.db"
Delete "$INSTDIR\mt-daapd-example.conf" Delete "$INSTDIR\mt-daapd-example.conf"

View File

@ -4,6 +4,7 @@
Version="7.10" Version="7.10"
Name="w32-event" Name="w32-event"
ProjectGUID="{E60F90F1-A1E5-49D8-A565-B990CA4BA860}" ProjectGUID="{E60F90F1-A1E5-49D8-A565-B990CA4BA860}"
RootNamespace="w32-event"
Keyword="Win32Proj"> Keyword="Win32Proj">
<Platforms> <Platforms>
<Platform <Platform
@ -34,6 +35,7 @@
Name="VCLinkerTool" Name="VCLinkerTool"
OutputFile="$(OutDir)/w32-event.dll" OutputFile="$(OutDir)/w32-event.dll"
LinkIncremental="2" LinkIncremental="2"
ModuleDefinitionFile="w32-event.def"
GenerateDebugInformation="TRUE" GenerateDebugInformation="TRUE"
ProgramDatabaseFile="$(OutDir)/w32-event.pdb" ProgramDatabaseFile="$(OutDir)/w32-event.pdb"
SubSystem="2" SubSystem="2"
@ -81,6 +83,7 @@
Name="VCLinkerTool" Name="VCLinkerTool"
OutputFile="$(OutDir)/w32-event.dll" OutputFile="$(OutDir)/w32-event.dll"
LinkIncremental="1" LinkIncremental="1"
ModuleDefinitionFile="w32-event.def"
GenerateDebugInformation="TRUE" GenerateDebugInformation="TRUE"
SubSystem="2" SubSystem="2"
OptimizeReferences="2" OptimizeReferences="2"