mirror of https://github.com/KLayout/klayout.git
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:
parent
d03d4bec1d
commit
1ff34fc1e2
11
build.bat
11
build.bat
|
|
@ -250,6 +250,11 @@ echo on
|
||||||
"HAVE_64BIT_COORD=%HAVE_64BIT_COORD%" ^
|
"HAVE_64BIT_COORD=%HAVE_64BIT_COORD%" ^
|
||||||
"PREFIX=%option-bin%" ^
|
"PREFIX=%option-bin%" ^
|
||||||
"BITS_PATH=%option-bits%\%compiler%\%arch%" ^
|
"BITS_PATH=%option-bits%\%compiler%\%arch%" ^
|
||||||
%inst_path%\src\klayout.pro ^
|
%inst_path%\src\klayout.pro || exit /b 1
|
||||||
&& nmake %MAKE_OPT% ^
|
|
||||||
&& nmake install
|
rem start the build
|
||||||
|
nmake %MAKE_OPT% || exit /b 2
|
||||||
|
|
||||||
|
rem install the binaries
|
||||||
|
nmake install || exit /b 3
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue