Skip to content

Commit

Permalink
Added Visual Studio configuration scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
pinam45 committed Sep 28, 2018
1 parent 3b1fbff commit 928efe9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ide/configure_VS2017.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
@echo off
set TARGET="Visual Studio 15 2017"
set TOOLSET=v141
set CFGS=Debug;RelWithDebInfo;Release
set OUT=VS2017_%TOOLSET%
mkdir %OUT% 2>NUL
cmd /C "pushd %OUT% & cmake ../.. -G %TARGET% -T %TOOLSET% -DCMAKE_CONFIGURATION_TYPES=%CFGS%"
7 changes: 7 additions & 0 deletions ide/configure_VS2017_x64.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
@echo off
set TARGET="Visual Studio 15 2017 Win64"
set TOOLSET=v141
set CFGS=Debug;RelWithDebInfo;Release
set OUT=VS2017_%TOOLSET%_x64
mkdir %OUT% 2>NUL
cmd /C "pushd %OUT% & cmake ../.. -G %TARGET% -T %TOOLSET% -DCMAKE_CONFIGURATION_TYPES=%CFGS%"

0 comments on commit 928efe9

Please sign in to comment.