diff options
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 + |