diff options
author | Martijn Kaijser <mcm.kaijser@gmail.com> | 2013-09-01 17:04:39 +0200 |
---|---|---|
committer | Martijn Kaijser <mcm.kaijser@gmail.com> | 2013-09-02 19:49:14 +0200 |
commit | 3490694a0375a58881e176e6dc8e0ea7ae83bd6d (patch) | |
tree | 386a6caca1f29ebaf00f5d1a0e0087b1f8df2b26 /project | |
parent | 9d8dfd50c47ce19566f245cf5d2ae30f0b189f0f (diff) |
[win32] update and clean exclude.txt used in BuildSetup
Diffstat (limited to 'project')
-rw-r--r-- | project/Win32BuildSetup/BuildSetup.bat | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/project/Win32BuildSetup/BuildSetup.bat b/project/Win32BuildSetup/BuildSetup.bat index f4548a3eb5..de9c0e1be4 100644 --- a/project/Win32BuildSetup/BuildSetup.bat +++ b/project/Win32BuildSetup/BuildSetup.bat @@ -184,26 +184,28 @@ IF %comp%==vs2010 ( ECHO Copying files... IF EXIST BUILD_WIN32 rmdir BUILD_WIN32 /S /Q - - Echo .svn>exclude.txt - Echo CVS>>exclude.txt + rem Add files to exclude.txt that should not be included in the installer + Echo Thumbs.db>>exclude.txt Echo Desktop.ini>>exclude.txt Echo dsstdfx.bin>>exclude.txt Echo exclude.txt>>exclude.txt - rem and exclude potential leftovers - Echo mediasources.xml>>exclude.txt - Echo advancedsettings.xml>>exclude.txt - Echo guisettings.xml>>exclude.txt - Echo profiles.xml>>exclude.txt - Echo sources.xml>>exclude.txt + Echo xbmc.txt>>exclude.txt + Echo xbmc.old.txt>>exclude.txt + rem Exclude userdata files + Echo userdata\advancedsettings.xml>>exclude.txt + Echo userdata\guisettings.xml>>exclude.txt + Echo userdata\mediasources.xml>>exclude.txt + Echo userdata\passwords.xml>>exclude.txt + Echo userdata\profiles.xml>>exclude.txt + Echo userdata\sources.xml>>exclude.txt + Echo userdata\upnpserver.xml>>exclude.txt + rem Exclude userdata folders + Echo userdata\addon_data\>>exclude.txt Echo userdata\cache\>>exclude.txt Echo userdata\database\>>exclude.txt Echo userdata\playlists\>>exclude.txt - Echo userdata\script_data\>>exclude.txt Echo userdata\thumbnails\>>exclude.txt - rem UserData\visualisations contains currently only xbox visualisationfiles - Echo userdata\visualisations\>>exclude.txt rem Exclude non Windows addons Echo addons\repository.pvr-android.xbmc.org\>>exclude.txt Echo addons\repository.pvr-ios.xbmc.org\>>exclude.txt @@ -235,7 +237,6 @@ IF %comp%==vs2010 ( copy ..\..\LICENSE.GPL BUILD_WIN32\Xbmc > NUL copy ..\..\known_issues.txt BUILD_WIN32\Xbmc > NUL xcopy dependencies\*.* BUILD_WIN32\Xbmc /Q /I /Y /EXCLUDE:exclude.txt > NUL - copy sources.xml BUILD_WIN32\Xbmc\userdata > NUL xcopy ..\..\language BUILD_WIN32\Xbmc\language /E /Q /I /Y /EXCLUDE:exclude.txt > NUL xcopy ..\..\addons BUILD_WIN32\Xbmc\addons /E /Q /I /Y /EXCLUDE:exclude.txt > NUL |