diff --git a/release/script/mkrelease b/release/script/mkrelease index 72eb378f0..455069dbb 100755 --- a/release/script/mkrelease +++ b/release/script/mkrelease @@ -440,8 +440,6 @@ ENDOFSCRIPT # cat >${target}/build_vs100.cmd <<'ENDOFSCRIPT' @echo off -if defined VS100COMNTOOLS ( -call "%VS100COMNTOOLS%\vsvars32.bat") buildwin 100 build shared both Win32 samples ENDOFSCRIPT @@ -451,8 +449,6 @@ ENDOFSCRIPT # cat >${target}/build_vs110.cmd <<'ENDOFSCRIPT' @echo off -if defined VS110COMNTOOLS ( -call "%VS110COMNTOOLS%\vsvars32.bat") buildwin 110 build shared both Win32 samples ENDOFSCRIPT @@ -462,8 +458,6 @@ ENDOFSCRIPT # cat >${target}/build_vs120.cmd <<'ENDOFSCRIPT' @echo off -if defined VS120COMNTOOLS ( -call "%VS120COMNTOOLS%\vsvars32.bat") buildwin 120 build shared both Win32 samples ENDOFSCRIPT @@ -473,12 +467,19 @@ ENDOFSCRIPT # cat >${target}/build_vs140.cmd <<'ENDOFSCRIPT' @echo off -if defined VS140COMNTOOLS ( -call "%VS140COMNTOOLS%\vsvars32.bat") buildwin 140 build shared both Win32 samples ENDOFSCRIPT +# +# Create Visual Studio 15 build script +# +cat >${target}/build_vs150.cmd <<'ENDOFSCRIPT' +@echo off +buildwin 150 build shared both Win32 samples +ENDOFSCRIPT + + # # Create Visual Studio 9 WinCE build script # @@ -514,6 +515,10 @@ if [ "$lineEndConv" != "" ] ; then $lineEndConv ${target}/build_vs80.cmd $lineEndConv ${target}/build_vs90.cmd $lineEndConv ${target}/build_vs100.cmd + $lineEndConv ${target}/build_vs110.cmd + $lineEndConv ${target}/build_vs120.cmd + $lineEndConv ${target}/build_vs140.cmd + $lineEndConv ${target}/build_vs150.cmd $lineEndConv ${target}/build_CE_vs90.cmd $lineEndConv ${target}/build_vcexpress2008.cmd $lineEndConv ${target}/build_vcexpress2010.cmd