summaryrefslogtreecommitdiff
path: root/translate/mcode/winbuild.bat
blob: ef16f1ee059efe24482011d012604ba068ff29ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
call windows\compile
if errorlevel 1 goto end
call windows\complib
if errorlevel 1 goto end
"f:\Program Files\NSIS\makensis" windows\ghdl.nsi
if errorlevel 1 goto end

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

exit /b 0

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