summaryrefslogtreecommitdiff
path: root/dist/mcode/winbuild.bat
blob: 261f9f1acde7f5a1049a43cfc2da5b427f449a26 (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 < ..\..\src\version.ads > windows\version.nsi

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

exit /b 0

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