aboutsummaryrefslogtreecommitdiffstats
path: root/translate/mcode/winbuild.bat
blob: bbe031d61548a531c09297aca2a051257da17982 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
call windows\compile
if errorlevel 1 goto end

call windows\complib
if errorlevel 1 goto end

gnatmake windows/ghdlversion -o windows/ghdlversion.exe
windows\ghdlversion < ../../version.ads > windows/version.nsi

"f:\Program Files\NSIS\makensis" windows\ghdl.nsi
if errorlevel 1 goto end

exit /b 0

:end
echo "Error during compilation"
exit /b 1