diff options
author | jmarshallnz <jmarshallnz@svn> | 2009-11-21 04:24:01 +0000 |
---|---|---|
committer | jmarshallnz <jmarshallnz@svn> | 2009-11-21 04:24:01 +0000 |
commit | 0eb1f0c5237389c898cf4fca3f0f0f7d0cf82e4e (patch) | |
tree | d12b9672302a38f835d2c01912a76b870fb61ea9 /project/Win32BuildSetup/buildskins.bat | |
parent | e1799b9139f4c0fc096d264319a62f9d2723438e (diff) |
update: Build scripts for fancy new skin.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@24809 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'project/Win32BuildSetup/buildskins.bat')
-rw-r--r-- | project/Win32BuildSetup/buildskins.bat | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/project/Win32BuildSetup/buildskins.bat b/project/Win32BuildSetup/buildskins.bat index f04bd74188..5475e03a29 100644 --- a/project/Win32BuildSetup/buildskins.bat +++ b/project/Win32BuildSetup/buildskins.bat @@ -4,7 +4,7 @@ rem Copyright (C) 2005-2008 Team XBMC rem http://xbmc.org
rem Script by chadoe
-rem This script builds the PM3.HD skin and all skins in the optinal directory provided and copy the builds to BUILD_WIN32 for further packaging
+rem This script builds the Confluence and PM3.HD skins and all skins in the optinal directory provided and copy the builds to BUILD_WIN32 for further packaging
SET SKIN_PATH="%1"
SET CUR_PATH=%CD%
@@ -15,6 +15,13 @@ SET PATH=%PATH%;%CD%\..\..\Tools\XBMCTex rem default skins
+ECHO Compiling Confluence...
+cd "..\..\skin\Confluence"
+CALL build.bat > NUL
+cd "%CUR_PATH%"
+ECHO Copying files...
+xcopy "..\..\skin\Confluence\BUILD\Confluence" "BUILD_WIN32\Xbmc\skin\Confluence" /E /Q /I /Y /EXCLUDE:exclude.txt > NUL
+
ECHO Compiling PM3.HD...
cd "..\..\skin\PM3.HD"
CALL build.bat > NUL
|