Add scripts to generate projects.

This commit is contained in:
Jean-Philip Desjardins 2017-05-03 21:54:43 -04:00
parent 8eb5124086
commit 6bc13c7a4f
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,5 @@
@echo off
mkdir build
pushd build
cmake .. -G "Visual Studio 15 2017 Win64"
popd

View File

@ -0,0 +1,5 @@
@echo off
mkdir build_debugger
pushd build_debugger
cmake .. -G "Visual Studio 15 2017 Win64" -DDEBUGGER_INCLUDED=on
popd