Navigation Menu

Skip to content

Commit

Permalink
[WIN32] fixed: setup, some addons containing .h in the directory name…
Browse files Browse the repository at this point in the history
… were excluded from copying to the packaging directory.
  • Loading branch information
chadoe committed Nov 15, 2012
1 parent c606dbf commit 0ae334a
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions project/Win32BuildSetup/BuildSetup.bat
Expand Up @@ -159,11 +159,6 @@ IF %comp%==vs2010 (

Echo .svn>exclude.txt
Echo CVS>>exclude.txt
Echo .so>>exclude.txt
Echo .h>>exclude.txt
Echo .cpp>>exclude.txt
Echo .exp>>exclude.txt
Echo .lib>>exclude.txt
Echo Thumbs.db>>exclude.txt
Echo Desktop.ini>>exclude.txt
Echo dsstdfx.bin>>exclude.txt
Expand Down Expand Up @@ -217,6 +212,12 @@ IF %comp%==vs2010 (
TITLE XBMC for Windows Build Script

IF EXIST exclude.txt del exclude.txt > NUL
del /s /q /f BUILD_WIN32\Xbmc\*.so > NUL
del /s /q /f BUILD_WIN32\Xbmc\*.h > NUL
del /s /q /f BUILD_WIN32\Xbmc\*.cpp > NUL
del /s /q /f BUILD_WIN32\Xbmc\*.exp > NUL
del /s /q /f BUILD_WIN32\Xbmc\*.lib > NUL

ECHO ------------------------------------------------------------
ECHO Build Succeeded!
GOTO NSIS_EXE
Expand Down

0 comments on commit 0ae334a

Please sign in to comment.