add a command line flag to avoid the pause so we can call it on CI
This commit is contained in:
@@ -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
9
configure_windows.cmd
Normal 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
|
||||
Reference in New Issue
Block a user