aboutsummaryrefslogtreecommitdiffstats
path: root/tools/win-setup.ps1
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2015-08-29 22:28:01 +0200
committerAnders Broman <a.broman58@gmail.com>2015-08-30 15:33:23 +0000
commit00087b475180607a0f3956238e3f4241db30164a (patch)
treef2ed36505ea8e73e2808ace13a0202bdf14f17c2 /tools/win-setup.ps1
parent99e16ce82028f2fee6cdf31c7abb9918131e6c22 (diff)
Add Lua 5.2.3 built with MSVC2015
Change-Id: I9b173f5136f858e4f95fb5b0688ef02c08a8d9e4 Reviewed-on: https://code.wireshark.org/review/10313 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'tools/win-setup.ps1')
-rw-r--r--tools/win-setup.ps16
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/win-setup.ps1 b/tools/win-setup.ps1
index c69af7d425..97108b9b98 100644
--- a/tools/win-setup.ps1
+++ b/tools/win-setup.ps1
@@ -101,8 +101,8 @@ Param(
# trouble instead of trying to catch exceptions everywhere.
$ErrorActionPreference = "Stop"
-$Win64CurrentTag = "2015-05-30"
-$Win32CurrentTag = "2015-05-30"
+$Win64CurrentTag = "2015-08-29"
+$Win32CurrentTag = "2015-08-29"
# Archive file / subdir.
$Win64Archives = @{
@@ -141,7 +141,7 @@ $Win32Archives = @{
# Lua
-if ( @("12", "11", "10") -contains $VSVersion ) {
+if ( @("14", "12", "11", "10") -contains $VSVersion ) {
$Win64Archives["lua-5.2.3_Win64_dll$($VSVersion)_lib.zip"] = "lua5.2.3"
$Win32Archives["lua-5.2.3_Win32_dll$($VSVersion)_lib.zip"] = "lua5.2.3"
}