blob: 7d5b942dbe020e02d0d6adbc135474065118095b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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
exit /b 0
:end
echo "Error during compilation"
exit /b 1
|