diff options
author | wiso <wiso@svn> | 2010-03-26 16:41:18 +0000 |
---|---|---|
committer | wiso <wiso@svn> | 2010-03-26 16:41:18 +0000 |
commit | 27f51b2c36f8aa4b0d33639682725cc2f5efa677 (patch) | |
tree | 5d4b0bcf42096ef410024443b3ef73f9a7d28bb6 /lib | |
parent | 817b6911cddceffdb4c812f5c5f469515253e452 (diff) |
[WIN32] mingw build script for cpluff
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@28843 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'lib')
-rw-r--r-- | lib/cpluff/build_xbmc_win32.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/cpluff/build_xbmc_win32.sh b/lib/cpluff/build_xbmc_win32.sh new file mode 100644 index 0000000000..4b164c6894 --- /dev/null +++ b/lib/cpluff/build_xbmc_win32.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +make distclean +rm config.h_bak + +./configure && + +# uncomment if you want another path seperator (XBMC uses url style) +#cp config.h config.h_bak && +#cat config.h | grep -v CP_FNAMESEP_CHAR |grep -v CP_FNAMESEP_STR > config.h && +#echo "#define CP_FNAMESEP_CHAR '/'" >> config.h && +#echo "#define CP_FNAMESEP_STR \"/\"" >> config.h &&*/ + +make -j3 + |