diff options
-rw-r--r-- | project/Win32BuildSetup/XBMC for Windows.nsi | 7 | ||||
-rw-r--r-- | project/Win32BuildSetup/dependencies/getdeps.bat | 3 |
2 files changed, 2 insertions, 8 deletions
diff --git a/project/Win32BuildSetup/XBMC for Windows.nsi b/project/Win32BuildSetup/XBMC for Windows.nsi index 8feb8c8186..b08c2370d9 100644 --- a/project/Win32BuildSetup/XBMC for Windows.nsi +++ b/project/Win32BuildSetup/XBMC for Windows.nsi @@ -329,13 +329,6 @@ Section "Uninstall" Delete "$INSTDIR\xbmc.old.log"
Delete "$INSTDIR\msvcp71.dll"
Delete "$INSTDIR\msvcr71.dll"
- Delete "$INSTDIR\libgcrypt-11.dll"
- Delete "$INSTDIR\libgpg-error-0.dll"
- Delete "$INSTDIR\libiconv-2.dll"
- Delete "$INSTDIR\libintl-8.dll"
- Delete "$INSTDIR\libmicrohttpd-5.dll"
- Delete "$INSTDIR\libplibc-1.dll"
- Delete "$INSTDIR\pthreadGC2.dll"
RMDir /r "$INSTDIR\language"
RMDir /r "$INSTDIR\media"
RMDir /r "$INSTDIR\plugins"
diff --git a/project/Win32BuildSetup/dependencies/getdeps.bat b/project/Win32BuildSetup/dependencies/getdeps.bat index df59695a56..bf5a92a6d7 100644 --- a/project/Win32BuildSetup/dependencies/getdeps.bat +++ b/project/Win32BuildSetup/dependencies/getdeps.bat @@ -3,6 +3,7 @@ rem copies additional dependencies from lib directories set CUR_PATH=%cd% cd "%~dp0" -xcopy /Y ..\..\..\lib\libmicrohttpd_win32\bin\*.dll +md ..\..\..\system\webserver > nul +xcopy /Y ..\..\..\lib\libmicrohttpd_win32\bin\*.dll ..\..\..\system\webserver cd "%CUR_PATH%" set CUR_PATH=
\ No newline at end of file |