Skip to content

Commit

Permalink
Added Visual Studio configuration batch files
Browse files Browse the repository at this point in the history
  • Loading branch information
pinam45 committed Mar 9, 2019
1 parent 206c509 commit 0270cdf
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
@@ -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
@@ -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 0270cdf

Please sign in to comment.