From 852ef63bddb2fe5fd43bb17779e2d69577125d27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnter=20Obiltschnig?= Date: Wed, 20 Jul 2022 12:25:15 +0200 Subject: [PATCH] #3700: Release script must include build_vs170.cmd --- release/script/mkrelease | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/release/script/mkrelease b/release/script/mkrelease index 9d6ebaf39..a9f46a190 100755 --- a/release/script/mkrelease +++ b/release/script/mkrelease @@ -423,6 +423,15 @@ buildwin 160 build shared both Win32 samples ENDOFSCRIPT +# +# Create Visual Studio 17 build script +# +cat >${target}/build_vs170.cmd <<'ENDOFSCRIPT' +@echo off +buildwin 170 build shared both Win32 samples +ENDOFSCRIPT + + # # Fix line endings # @@ -430,6 +439,7 @@ if [ "$lineEndConv" != "" ] ; then $lineEndConv ${target}/build_vs140.cmd $lineEndConv ${target}/build_vs150.cmd $lineEndConv ${target}/build_vs160.cmd + $lineEndConv ${target}/build_vs170.cmd $lineEndConv ${target}/Makefile $lineEndConv ${target}/components fi