Skip to content

Commit

Permalink
[WIN32] changed: use a shell script for the mingw dlls and call it fr…
Browse files Browse the repository at this point in the history
…om the batch file. more flexible and working better.
  • Loading branch information
WiSo committed Jan 29, 2011
1 parent 07d0eb9 commit 652e8e3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
6 changes: 1 addition & 5 deletions project/Win32BuildSetup/buildmingwlibs.bat
@@ -1,8 +1,4 @@
@ECHO OFF
rem compiles a bunch of mingw libs and not more
rem might be a nice addition if we check for success?
rem still not working right

..\BuildDependencies\msys\bin\rxvt -backspacekey  -sl 2500 -sr -fn Courier-12 -tn msys -geometry 120x25 -e /bin/sh --login /xbmc/lib/ffmpeg/build_xbmc_win32.sh
..\BuildDependencies\msys\bin\rxvt -backspacekey  -sl 2500 -sr -fn Courier-12 -tn msys -geometry 120x25 -e /bin/sh --login /xbmc/lib/libdvd/build-xbmc-win32.sh
..\BuildDependencies\msys\bin\rxvt -backspacekey  -sl 2500 -sr -fn Courier-12 -tn msys -geometry 120x25 -title "building mingw dlls" -e /bin/sh --login /xbmc/project/Win32BuildSetup/buildmingwlibs.sh

12 changes: 12 additions & 0 deletions project/Win32BuildSetup/buildmingwlibs.sh
@@ -0,0 +1,12 @@

echo "##### building ffmpeg dlls #####"
#sh /xbmc/lib/ffmpeg/build_xbmc_win32.sh
echo "##### building of ffmpeg dlls done #####"

echo "##### building libdvd dlls #####"
sh /xbmc/lib/libdvd/build-xbmc-win32.sh
echo "##### building of libdvd dlls done #####"

# wait for key press
echo press a key to close the window
read

0 comments on commit 652e8e3

Please sign in to comment.