diff --git a/ide/configure_VS2017.cmd b/ide/configure_VS2017.cmd new file mode 100644 index 0000000..76d5148 --- /dev/null +++ b/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%" diff --git a/ide/configure_VS2017_x64.cmd b/ide/configure_VS2017_x64.cmd new file mode 100644 index 0000000..91bde97 --- /dev/null +++ b/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%"