aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorcharlydoes <charlydoes@svn>2010-03-01 19:07:14 +0000
committercharlydoes <charlydoes@svn>2010-03-01 19:07:14 +0000
commit773e307a49fdae1e87022140b94d0b7a304217c9 (patch)
tree7f56e1758192886ef29361ea8b48f2615e7e926b /project
parent82b3e69c657ef2e31791a2783bc88d7c83250189 (diff)
[WIN32] changed: install libmicrohttpd dlls in system\webserver instead of app root.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@28262 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'project')
-rw-r--r--project/Win32BuildSetup/XBMC for Windows.nsi7
-rw-r--r--project/Win32BuildSetup/dependencies/getdeps.bat3
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