diff --git a/build.bat b/build.bat index 7e6ebb5..cadb165 100644 --- a/build.bat +++ b/build.bat @@ -7,15 +7,15 @@ cd build @REM Generate a Visual Studio solution for latest version found cmake -DSQLITECPP_BUILD_EXAMPLES=ON -DSQLITECPP_BUILD_TESTS=ON .. -if ERRORLEVEL 1 goto onError +@if ERRORLEVEL 1 goto onError @REM Build default configuration (ie 'Debug') cmake --build . -if ERRORLEVEL 1 goto onError +@if ERRORLEVEL 1 goto onError @REM Build and run tests ctest --output-on-failure -if ERRORLEVEL 1 goto onError +@if ERRORLEVEL 1 goto onError goto onSuccess