From 1ff34fc1e2fd3b5cb4f7058d2fab47c3339cb470 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Thu, 27 Sep 2018 21:58:16 +0200 Subject: [PATCH] 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 --- build.bat | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/build.bat b/build.bat index bdee5a50a..64dcc84ce 100644 --- a/build.bat +++ b/build.bat @@ -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 +