blob: 4f53ec5587aa4b54012e37e73f9cb1f29821bc7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
|
@ECHO OFF
SETLOCAL ENABLEDELAYEDEXPANSION
rem ----Usage----
rem BuildSetup [clean|noclean]
rem clean to force a full rebuild
rem noclean to force a build without clean
rem noprompt to avoid all prompts
rem nomingwlibs to skip building all libs built with mingw
CLS
COLOR 1B
TITLE XBMC for Windows Build Script
rem ----PURPOSE----
rem - Create a working XBMC build with a single click
rem -------------------------------------------------------------
rem Config
rem If you get an error that Visual studio was not found, SET your path for VSNET main executable.
rem -------------------------------------------------------------
rem CONFIG START
SET buildmode=ask
SET promptlevel=prompt
SET buildmingwlibs=true
SET exitcode=0
SET useshell=rxvt
SET BRANCH=na
FOR %%b in (%1, %2, %3, %4, %5) DO (
IF %%b==clean SET buildmode=clean
IF %%b==noclean SET buildmode=noclean
IF %%b==noprompt SET promptlevel=noprompt
IF %%b==nomingwlibs SET buildmingwlibs=false
IF %%b==sh SET useshell=sh
)
SET buildconfig=Release
set WORKSPACE=%CD%\..\..
REM look for MSBuild.exe delivered with Visual Studio 2013
FOR /F "tokens=2,* delims= " %%A IN ('REG QUERY HKLM\SOFTWARE\Microsoft\MSBuild\ToolsVersions\12.0 /v MSBuildToolsRoot') DO SET MSBUILDROOT=%%B
SET NET="%MSBUILDROOT%12.0\bin\MSBuild.exe"
IF EXIST "!NET!" (
set msbuildemitsolution=1
set OPTS_EXE="..\VS2010Express\XBMC for Windows.sln" /t:Build /p:Configuration="%buildconfig%" /property:VCTargetsPath="%MSBUILDROOT%Microsoft.Cpp\v4.0\V120"
set CLEAN_EXE="..\VS2010Express\XBMC for Windows.sln" /t:Clean /p:Configuration="%buildconfig%" /property:VCTargetsPath="%MSBUILDROOT%Microsoft.Cpp\v4.0\V120"
)
IF NOT EXIST %NET% (
set DIETEXT=MSBuild was not found.
goto DIE
)
set EXE= "..\VS2010Express\XBMC\%buildconfig%\XBMC.exe"
set PDB= "..\VS2010Express\XBMC\%buildconfig%\XBMC.pdb"
:: sets the BRANCH env var
call getbranch.bat
rem CONFIG END
rem -------------------------------------------------------------
echo :
echo :::
echo ::::
echo ::::
echo ::::::: ::::::::::::::::: :::::: :::::: :::::::
echo ::::::::: :::::::::::::::::::: :::::::::: :::::::::: :::::::::
echo ::::::::: :::::::::::::::::::::: :::::::::::::::::::::::: :::::::::
echo ::::::::: ::: ::::: ::::: :::::::: :::: :::::
echo :::::: :::: :::: :::: ::::: :::::::
echo ::::: :::: ::::::: ::::: ::::::
echo ::::: ::: :::::: ::: ::::::
echo :::: ::: :::::: :::: ::::::
echo :::: ::: ::::::: :::: ::::::
echo ::::: :::: ::::::: :::: ::::::
echo ::::::: :::: :::::::: ::: :::::::
echo ::::::::::::::: ::::: ::::: ::: ::: :::::::::
echo ::::::::: ::::::::: ::::::::::: ::: ::: ::: :::::::::
echo :::::::: ::::::::: ::::::::: ::: ::: ::: ::::::::
echo :::::: ::::::: ::::: : :: :: ::::::
goto EXE_COMPILE
:EXE_COMPILE
IF EXIST buildlog.html del buildlog.html /q
IF NOT %buildmode%==ask goto COMPILE_MINGW
IF %promptlevel%==noprompt goto COMPILE_MINGW
rem ---------------------------------------------
rem check for existing exe
rem ---------------------------------------------
set buildmode=clean
IF NOT EXIST %EXE% goto COMPILE_MINGW
ECHO ------------------------------------------------------------
ECHO Found a previous Compiled WIN32 EXE!
ECHO [1] a NEW EXE will be compiled for the BUILD_WIN32
ECHO [2] existing EXE will be updated (quick mode compile) for the BUILD_WIN32
ECHO ------------------------------------------------------------
set /P APP_COMPILE_ANSWER=Compile a new EXE? [1/2]:
if /I %APP_COMPILE_ANSWER% EQU 1 set buildmode=clean
if /I %APP_COMPILE_ANSWER% EQU 2 set buildmode=noclean
goto COMPILE_MINGW
:COMPILE_MINGW
ECHO Buildmode = %buildmode%
IF %buildmingwlibs%==true (
ECHO Compiling mingw libs
ECHO bla>noprompt
IF EXIST errormingw del errormingw > NUL
IF %buildmode%==clean (
ECHO bla>makeclean
)
rem only use sh to please jenkins
IF %useshell%==sh (
call ..\..\tools\buildsteps\win32\make-mingwlibs.bat sh noprompt
) ELSE (
call ..\..\tools\buildsteps\win32\make-mingwlibs.bat noprompt
)
IF EXIST errormingw (
set DIETEXT="failed to build mingw libs"
goto DIE
)
)
IF %buildmode%==clean goto COMPILE_EXE
goto COMPILE_NO_CLEAN_EXE
:COMPILE_EXE
ECHO Wait while preparing the build.
ECHO ------------------------------------------------------------
ECHO Cleaning Solution...
%NET% %CLEAN_EXE%
ECHO Compiling XBMC branch %BRANCH%...
%NET% %OPTS_EXE%
IF %errorlevel%==1 (
set DIETEXT="XBMC.EXE failed to build! See %CD%\..\vs2010express\XBMC\%buildconfig%\objs\XBMC.log"
IF %promptlevel%==noprompt (
type "%CD%\..\vs2010express\XBMC\%buildconfig%\objs\XBMC.log"
)
goto DIE
)
ECHO Done!
ECHO ------------------------------------------------------------
set buildmode=clean
GOTO MAKE_BUILD_EXE
:COMPILE_NO_CLEAN_EXE
ECHO Wait while preparing the build.
ECHO ------------------------------------------------------------
ECHO Compiling XBMC branch %BRANCH%...
%NET% %OPTS_EXE%
IF %errorlevel%==1 (
set DIETEXT="XBMC.EXE failed to build! See %CD%\..\vs2010express\XBMC\%buildconfig%\objs\XBMC.log"
IF %promptlevel%==noprompt (
type "%CD%\..\vs2010express\XBMC\%buildconfig%\objs\XBMC.log"
)
goto DIE
)
ECHO Done!
ECHO ------------------------------------------------------------
GOTO MAKE_BUILD_EXE
:MAKE_BUILD_EXE
ECHO Copying files...
IF EXIST BUILD_WIN32 rmdir BUILD_WIN32 /S /Q
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
Echo xbmc.log>>exclude.txt
Echo xbmc.old.log>>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\thumbnails\>>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
Echo addons\repository.pvr-osx32.xbmc.org\>>exclude.txt
Echo addons\repository.pvr-osx64.xbmc.org\>>exclude.txt
Echo addons\screensaver.rsxs.euphoria\>>exclude.txt
Echo addons\screensaver.rsxs.plasma\>>exclude.txt
Echo addons\screensaver.rsxs.solarwinds\>>exclude.txt
Echo addons\visualization.fishbmc\>>exclude.txt
Echo addons\visualization.projectm\>>exclude.txt
Echo addons\visualization.glspectrum\>>exclude.txt
rem Exclude skins as they're copied by their own script
Echo addons\skin.re-touched\>>exclude.txt
Echo addons\skin.confluence\>>exclude.txt
md BUILD_WIN32\application
xcopy %EXE% BUILD_WIN32\application > NUL
xcopy ..\..\userdata BUILD_WIN32\application\userdata /E /Q /I /Y /EXCLUDE:exclude.txt > NUL
copy ..\..\copying.txt BUILD_WIN32\application > NUL
copy ..\..\LICENSE.GPL BUILD_WIN32\application > NUL
copy ..\..\known_issues.txt BUILD_WIN32\application > NUL
xcopy dependencies\*.* BUILD_WIN32\application /Q /I /Y /EXCLUDE:exclude.txt > NUL
xcopy ..\..\language BUILD_WIN32\application\language /E /Q /I /Y /EXCLUDE:exclude.txt > NUL
xcopy ..\..\addons BUILD_WIN32\application\addons /E /Q /I /Y /EXCLUDE:exclude.txt > NUL
xcopy ..\..\system BUILD_WIN32\application\system /E /Q /I /Y /EXCLUDE:exclude.txt > NUL
xcopy ..\..\media BUILD_WIN32\application\media /E /Q /I /Y /EXCLUDE:exclude.txt > NUL
xcopy ..\..\sounds BUILD_WIN32\application\sounds /E /Q /I /Y /EXCLUDE:exclude.txt > NUL
ECHO ------------------------------------------------------------
call buildpvraddons.bat
IF %errorlevel%==1 (
set DIETEXT="failed to build pvr addons"
goto DIE
)
IF EXIST error.log del error.log > NUL
SET build_path=%CD%
ECHO ------------------------------------------------------------
ECHO Building addons...
cd ..\..\tools\buildsteps\win32
call make-addons.bat
IF %errorlevel%==1 (
set DIETEXT="failed to build addons"
cd %build_path%
goto DIE
)
cd %build_path%
IF EXIST error.log del error.log > NUL
ECHO ------------------------------------------------------------
ECHO Building Confluence Skin...
cd ..\..\addons\skin.confluence
call build.bat > NUL
cd %build_path%
IF EXIST ..\..\addons\skin.re-touched\build.bat (
ECHO Building Touched Skin...
cd ..\..\addons\skin.re-touched
call build.bat > NUL
cd %build_path%
)
rem restore color and title, some scripts mess these up
COLOR 1B
TITLE XBMC for Windows Build Script
IF EXIST exclude.txt del exclude.txt > NUL
del /s /q /f BUILD_WIN32\application\*.so > NUL
del /s /q /f BUILD_WIN32\application\*.h > NUL
del /s /q /f BUILD_WIN32\application\*.cpp > NUL
del /s /q /f BUILD_WIN32\application\*.exp > NUL
del /s /q /f BUILD_WIN32\application\*.lib > NUL
ECHO ------------------------------------------------------------
ECHO Build Succeeded!
GOTO NSIS_EXE
:NSIS_EXE
ECHO ------------------------------------------------------------
ECHO Generating installer includes...
call genNsisIncludes.bat
ECHO ------------------------------------------------------------
call getdeploydependencies.bat
CALL extract_git_rev.bat > NUL
SET APP_SETUPFILE=XBMCSetup-%GIT_REV%-%BRANCH%.exe
SET APP_PDBFILE=XBMCSetup-%GIT_REV%-%BRANCH%.pdb
ECHO Creating installer %APP_SETUPFILE%...
IF EXIST %APP_SETUPFILE% del %APP_SETUPFILE% > NUL
rem get path to makensis.exe from registry, first try tab delim
FOR /F "tokens=2* delims= " %%A IN ('REG QUERY "HKLM\Software\NSIS" /ve') DO SET NSISExePath=%%B
IF NOT EXIST "%NSISExePath%" (
rem try with space delim instead of tab
FOR /F "tokens=2* delims= " %%A IN ('REG QUERY "HKLM\Software\NSIS" /ve') DO SET NSISExePath=%%B
)
IF NOT EXIST "%NSISExePath%" (
rem fails on localized windows (Default) becomes (Par D�faut)
FOR /F "tokens=3* delims= " %%A IN ('REG QUERY "HKLM\Software\NSIS" /ve') DO SET NSISExePath=%%B
)
IF NOT EXIST "%NSISExePath%" (
FOR /F "tokens=3* delims= " %%A IN ('REG QUERY "HKLM\Software\NSIS" /ve') DO SET NSISExePath=%%B
)
rem proper x64 registry checks
IF NOT EXIST "%NSISExePath%" (
ECHO using x64 registry entries
FOR /F "tokens=2* delims= " %%A IN ('REG QUERY "HKLM\Software\Wow6432Node\NSIS" /ve') DO SET NSISExePath=%%B
)
IF NOT EXIST "%NSISExePath%" (
rem try with space delim instead of tab
FOR /F "tokens=2* delims= " %%A IN ('REG QUERY "HKLM\Software\Wow6432Node\NSIS" /ve') DO SET NSISExePath=%%B
)
IF NOT EXIST "%NSISExePath%" (
rem on win 7 x64, the previous fails
FOR /F "tokens=3* delims= " %%A IN ('REG QUERY "HKLM\Software\Wow6432Node\NSIS" /ve') DO SET NSISExePath=%%B
)
IF NOT EXIST "%NSISExePath%" (
rem try with space delim instead of tab
FOR /F "tokens=3* delims= " %%A IN ('REG QUERY "HKLM\Software\Wow6432Node\NSIS" /ve') DO SET NSISExePath=%%B
)
SET NSISExe=%NSISExePath%\makensis.exe
"%NSISExe%" /V1 /X"SetCompressor /FINAL lzma" /Dapp_root="%CD%\BUILD_WIN32" /Dapp_revision="%GIT_REV%" /Dapp_target="%target%" /Dapp_branch="%BRANCH%" "XBMC for Windows.nsi"
IF NOT EXIST "%APP_SETUPFILE%" (
set DIETEXT=Failed to create %APP_SETUPFILE%. NSIS installed?
goto DIE
)
copy %PDB% %APP_PDBFILE% > nul
ECHO ------------------------------------------------------------
ECHO Done!
ECHO Setup is located at %CD%\%APP_SETUPFILE%
ECHO ------------------------------------------------------------
GOTO VIEWLOG_EXE
:DIE
ECHO ------------------------------------------------------------
ECHO !-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-
ECHO ERROR ERROR ERROR ERROR ERROR ERROR ERROR ERROR ERROR
ECHO !-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-!-
set DIETEXT=ERROR: %DIETEXT%
echo %DIETEXT%
SET exitcode=1
ECHO ------------------------------------------------------------
GOTO END
:VIEWLOG_EXE
SET log="%CD%\..\vs2010express\XBMC\%buildconfig%\objs\XBMC.log"
IF NOT EXIST %log% goto END
copy %log% ./buildlog.html > NUL
IF %promptlevel%==noprompt (
goto END
)
set /P APP_BUILD_ANSWER=View the build log in your HTML browser? [y/n]
if /I %APP_BUILD_ANSWER% NEQ y goto END
SET log="%CD%\..\vs2010express\XBMC\%buildconfig%\objs\" XBMC.log
start /D%log%
goto END
:END
IF %promptlevel% NEQ noprompt (
ECHO Press any key to exit...
pause > NUL
)
EXIT /B %exitcode%
|