add a command line flag to avoid the pause so we can call it on CI

This commit is contained in:
Tony Cannon
2019-10-27 13:08:03 -07:00
parent de3578d770
commit 78e0e75ea7
2 changed files with 9 additions and 3 deletions

View File

@@ -1,3 +0,0 @@
@echo off
cmake -G "Visual Studio 16 2019" -A x64 -B build -DBUILD_SHARED_LIBS=off
pause

9
configure_windows.cmd Normal file
View File

@@ -0,0 +1,9 @@
@echo off
cmake -G "Visual Studio 16 2019" -A x64 -B build -DBUILD_SHARED_LIBS=off
IF "%1"=="--no-prompt" goto :done
:: pause so the user can see the output if they double clicked the configure script
pause
:done