-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Visual Studio configuration scripts
- Loading branch information
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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%" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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%" |