Skip to content

Commit

Permalink
Fixed build.bat - wasn't properly exiting and did not really perform …
Browse files Browse the repository at this point in the history
…a build without install (the latter is important for producing the unit test runner binary
  • Loading branch information
klayoutmatthias committed Sep 27, 2018
1 parent d03d4be commit 1ff34fc
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 1ff34fc

Please sign in to comment.