author | unc0rr |
Tue, 08 Oct 2013 10:28:57 +0400 | |
changeset 9501 | dc3d658de350 |
parent 9224 | bce8cf41d666 |
child 10017 | de822cd3df3a |
permissions | -rw-r--r-- |
6560 | 1 |
@echo off |
7799
a88a02c19a5b
tweaks to win build script, hedgewars.pro now supports win32 target
koda
parents:
6569
diff
changeset
|
2 |
::edit these variables if you need |
8068
b35427506169
win build changes, fpc 2.6, CMAKE_PREFIX_PATH, glut header
koda
parents:
7815
diff
changeset
|
3 |
set PASCAL=C:\FPC\2.6.0\bin\i386-win32\ |
7799
a88a02c19a5b
tweaks to win build script, hedgewars.pro now supports win32 target
koda
parents:
6569
diff
changeset
|
4 |
set QTDIR=C:\QtSDK\Desktop\Qt\4.7.4\mingw\bin |
a88a02c19a5b
tweaks to win build script, hedgewars.pro now supports win32 target
koda
parents:
6569
diff
changeset
|
5 |
set PATH=%PATH%;%PASCAL% |
7815 | 6 |
set BUILD_TYPE="Debug" |
6560 | 7 |
|
7799
a88a02c19a5b
tweaks to win build script, hedgewars.pro now supports win32 target
koda
parents:
6569
diff
changeset
|
8 |
:setup |
a88a02c19a5b
tweaks to win build script, hedgewars.pro now supports win32 target
koda
parents:
6569
diff
changeset
|
9 |
set CURRDIR="%CD%" |
6560 | 10 |
cd .. |
11 |
||
7810 | 12 |
echo Fetching all DLLs... |
7815 | 13 |
if %BUILD_TYPE%=="Debug" ( |
14 |
for %%G in (QtCored4 QtGuid4 QtNetworkd4) do xcopy /d/y %QTDIR%\%%G.dll %CD%\bin\ |
|
15 |
) |
|
9068
3401390f03cf
on Windows link libgcc statically to reduce the number of dlls
koda
parents:
8734
diff
changeset
|
16 |
:: should you libgcc dynamically you should try adding libgcc_s_dw2-1 and mingwm10 |
3401390f03cf
on Windows link libgcc statically to reduce the number of dlls
koda
parents:
8734
diff
changeset
|
17 |
for %%G in (QtCore4 QtGui4 QtNetwork4) do ( |
7815 | 18 |
xcopy /d/y %QTDIR%\%%G.dll %CD%\bin\ |
7810 | 19 |
) |
20 |
||
21 |
if not exist %CD%\misc\winutils\bin\ mkdir %CD%\misc\winutils\bin\ |
|
22 |
if not exist %CD%\misc\winutils\bin\SDL.dll cscript %CD%\tools\w32DownloadUnzip.vbs http://www.libsdl.org/release/SDL-1.2.15-win32.zip %CD%\misc\winutils\bin |
|
23 |
if not exist %CD%\misc\winutils\bin\SDL_image.dll cscript %CD%\tools\w32DownloadUnzip.vbs http://www.libsdl.org/projects/SDL_image/release/SDL_image-1.2.12-win32.zip %CD%\misc\winutils\bin |
|
24 |
if not exist %CD%\misc\winutils\bin\SDL_net.dll cscript %CD%\tools\w32DownloadUnzip.vbs http://www.libsdl.org/projects/SDL_net/release/SDL_net-1.2.8-win32.zip %CD%\misc\winutils\bin |
|
25 |
if not exist %CD%\misc\winutils\bin\SDL_mixer.dll cscript %CD%\tools\w32DownloadUnzip.vbs http://www.libsdl.org/projects/SDL_mixer/release/SDL_mixer-1.2.12-win32.zip %CD%\misc\winutils\bin |
|
26 |
if not exist %CD%\misc\winutils\bin\SDL_ttf.dll cscript %CD%\tools\w32DownloadUnzip.vbs http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-2.0.11-win32.zip %CD%\misc\winutils\bin |
|
27 |
||
7813
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
7812
diff
changeset
|
28 |
::for video recording |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
7812
diff
changeset
|
29 |
if not exist %CD%\misc\winutils\bin\avformat-54.dll cscript %CD%\tools\w32DownloadUnzip.vbs http://hedgewars.googlecode.com/files/libav-win32-20121022-dll.zip %CD%\misc\winutils\bin |
7815 | 30 |
if not exist %CD%\misc\winutils\bin\glut32.dll cscript %CD%\tools\w32DownloadUnzip.vbs https://user.xmission.com/~nate/glut/glut-3.7.6-bin.zip %CD%\misc\winutils\bin |
31 |
copy /y %CD%\misc\winutils\bin\glut-3.7.6-bin\glut32.dll %CD%\misc\winutils\bin\glut32.dll |
|
7813
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
7812
diff
changeset
|
32 |
|
7812 | 33 |
::this is needed because fpc png unit hardcodes libpng-1.2.12 |
34 |
if not exist %CD%\misc\winutils\bin\libpng13.dll copy /y %CD%\misc\winutils\bin\libpng15-15.dll %CD%\misc\winutils\bin\libpng13.dll |
|
35 |
||
7815 | 36 |
xcopy /d/y %CD%\misc\winutils\bin\*.dll %CD%\bin\ |
6560 | 37 |
|
7799
a88a02c19a5b
tweaks to win build script, hedgewars.pro now supports win32 target
koda
parents:
6569
diff
changeset
|
38 |
::setting up the environment... |
6560 | 39 |
call %QTDIR%\qtenv2.bat |
6569 | 40 |
|
6560 | 41 |
echo Running cmake... |
7799
a88a02c19a5b
tweaks to win build script, hedgewars.pro now supports win32 target
koda
parents:
6569
diff
changeset
|
42 |
set ERRORLEVEL= |
9099
a2af0ef2b664
if you use misuse labels as comments please at least keep in mind that labels cannot be used inline, within code blocks or with indentation!
sheepluva
parents:
9090
diff
changeset
|
43 |
cmake . -G "MinGW Makefiles" -DPNG_LIBRARY="%CD%\misc\winutils\bin\libpng13.dll" -DCMAKE_BUILD_TYPE="%BUILD_TYPE%" -DCMAKE_PREFIX_PATH="%CD%\misc\winutils\\" |
a2af0ef2b664
if you use misuse labels as comments please at least keep in mind that labels cannot be used inline, within code blocks or with indentation!
sheepluva
parents:
9090
diff
changeset
|
44 |
:: prefix should be last |
6560 | 45 |
|
7799
a88a02c19a5b
tweaks to win build script, hedgewars.pro now supports win32 target
koda
parents:
6569
diff
changeset
|
46 |
if %ERRORLEVEL% NEQ 0 goto exitpoint |
6569 | 47 |
|
6560 | 48 |
echo Running make... |
7799
a88a02c19a5b
tweaks to win build script, hedgewars.pro now supports win32 target
koda
parents:
6569
diff
changeset
|
49 |
set ERRORLEVEL= |
8068
b35427506169
win build changes, fpc 2.6, CMAKE_PREFIX_PATH, glut header
koda
parents:
7815
diff
changeset
|
50 |
mingw32-make VERBOSE=1 |
7799
a88a02c19a5b
tweaks to win build script, hedgewars.pro now supports win32 target
koda
parents:
6569
diff
changeset
|
51 |
if %ERRORLEVEL% NEQ 0 goto exitpoint |
6569 | 52 |
|
7799
a88a02c19a5b
tweaks to win build script, hedgewars.pro now supports win32 target
koda
parents:
6569
diff
changeset
|
53 |
echo Installing... |
a88a02c19a5b
tweaks to win build script, hedgewars.pro now supports win32 target
koda
parents:
6569
diff
changeset
|
54 |
set ERRORLEVEL= |
a88a02c19a5b
tweaks to win build script, hedgewars.pro now supports win32 target
koda
parents:
6569
diff
changeset
|
55 |
mingw32-make install > nul |
a88a02c19a5b
tweaks to win build script, hedgewars.pro now supports win32 target
koda
parents:
6569
diff
changeset
|
56 |
if %ERRORLEVEL% NEQ 0 goto exitpoint |
a88a02c19a5b
tweaks to win build script, hedgewars.pro now supports win32 target
koda
parents:
6569
diff
changeset
|
57 |
|
a88a02c19a5b
tweaks to win build script, hedgewars.pro now supports win32 target
koda
parents:
6569
diff
changeset
|
58 |
echo Creating commodity shortcut... |
7812 | 59 |
copy /y %CD%\misc\winutils\Hedgewars.lnk C:%HOMEPATH%\Desktop\Hedgewars.lnk |
7799
a88a02c19a5b
tweaks to win build script, hedgewars.pro now supports win32 target
koda
parents:
6569
diff
changeset
|
60 |
|
6569 | 61 |
echo ALL DONE, Hedgewars has been successfully compiled and installed |
6560 | 62 |
|
7799
a88a02c19a5b
tweaks to win build script, hedgewars.pro now supports win32 target
koda
parents:
6569
diff
changeset
|
63 |
:exitpoint |
a88a02c19a5b
tweaks to win build script, hedgewars.pro now supports win32 target
koda
parents:
6569
diff
changeset
|
64 |
cd %CURRDIR% |
6560 | 65 |
pause |