diff options
author | wiso <wiso@svn> | 2010-07-08 18:50:12 +0000 |
---|---|---|
committer | wiso <wiso@svn> | 2010-07-08 18:50:12 +0000 |
commit | 4340bc8f0d61fee4f482e824eb08646c74d65a9d (patch) | |
tree | 585ff26a050c454d4479ed3003e5e5e8730c2a2e | |
parent | dcfb5167dc305d6304028663266ff847daeab014 (diff) |
[WIN32] download libglew and libsdl and copy it to the appropriated places
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@31663 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
-rw-r--r-- | project/BuildDependencies/scripts/libglew_d.bat | 14 | ||||
-rw-r--r-- | project/BuildDependencies/scripts/libglew_d.txt | 2 | ||||
-rw-r--r-- | project/BuildDependencies/scripts/libsdl_d.bat | 14 | ||||
-rw-r--r-- | project/BuildDependencies/scripts/libsdl_d.txt | 2 |
4 files changed, 32 insertions, 0 deletions
diff --git a/project/BuildDependencies/scripts/libglew_d.bat b/project/BuildDependencies/scripts/libglew_d.bat new file mode 100644 index 0000000000..38c628d0ef --- /dev/null +++ b/project/BuildDependencies/scripts/libglew_d.bat @@ -0,0 +1,14 @@ +@ECHO OFF
+
+SET LOC_PATH=%CD%
+SET FILES=%LOC_PATH%\libglew_d.txt
+
+CALL dlextract.bat libglew %FILES%
+
+cd %TMP_PATH%
+
+xcopy glew\include\* "%CUR_PATH%\include\" /E /Q /I /Y
+copy glew\lib\*.lib "%CUR_PATH%\lib\" /Y
+copy glew\bin\glew32.dll "%XBMC_PATH%\project\Win32BuildSetup\dependencies\glew32.dll"
+
+cd %LOC_PATH%
\ No newline at end of file diff --git a/project/BuildDependencies/scripts/libglew_d.txt b/project/BuildDependencies/scripts/libglew_d.txt new file mode 100644 index 0000000000..5fffdb3c36 --- /dev/null +++ b/project/BuildDependencies/scripts/libglew_d.txt @@ -0,0 +1,2 @@ +; filename source of the file
+glew-1.5.0-win32.zip http://downloads.sourceforge.net/glew/
diff --git a/project/BuildDependencies/scripts/libsdl_d.bat b/project/BuildDependencies/scripts/libsdl_d.bat new file mode 100644 index 0000000000..2111bd9d06 --- /dev/null +++ b/project/BuildDependencies/scripts/libsdl_d.bat @@ -0,0 +1,14 @@ +@ECHO OFF
+
+SET LOC_PATH=%CD%
+SET FILES=%LOC_PATH%\libsdl_d.txt
+
+CALL dlextract.bat libsdl %FILES%
+
+cd %TMP_PATH%
+
+xcopy SDL-1.2.14\include\* "%CUR_PATH%\include\SDL\" /E /Q /I /Y
+copy SDL-1.2.14\lib\SDL.lib "%CUR_PATH%\lib\SDL.lib" /Y
+copy SDL-1.2.14\lib\SDL.dll "%XBMC_PATH%\project\Win32BuildSetup\dependencies\SDL.dll"
+
+cd %LOC_PATH%
\ No newline at end of file diff --git a/project/BuildDependencies/scripts/libsdl_d.txt b/project/BuildDependencies/scripts/libsdl_d.txt new file mode 100644 index 0000000000..ae057907d8 --- /dev/null +++ b/project/BuildDependencies/scripts/libsdl_d.txt @@ -0,0 +1,2 @@ +; filename source of the file
+SDL-devel-1.2.14-VC8.zip http://www.libsdl.org/release/
|