Fixed build.bat - wasn't properly exiting and did not really perform a build without install (the latter is important for producing the unit test runner binary

This commit is contained in:
Matthias Koefferlein 2018-09-27 21:58:16 +02:00
parent d03d4bec1d
commit 1ff34fc1e2
1 changed files with 8 additions and 3 deletions

View File

@ -250,6 +250,11 @@ echo on
"HAVE_64BIT_COORD=%HAVE_64BIT_COORD%" ^
"PREFIX=%option-bin%" ^
"BITS_PATH=%option-bits%\%compiler%\%arch%" ^
%inst_path%\src\klayout.pro ^
&& nmake %MAKE_OPT% ^
&& nmake install
%inst_path%\src\klayout.pro || exit /b 1
rem start the build
nmake %MAKE_OPT% || exit /b 2
rem install the binaries
nmake install || exit /b 3