FS-9953 [mod_av] Add mod_av to windows build

This commit is contained in:
Andrey Volk
2017-01-18 04:49:05 +03:00
parent b7578ecd98
commit b2d9cd9e72
17 changed files with 3169 additions and 5 deletions

View File

@@ -53,6 +53,8 @@ If objArgs.Count = 2 Then
Select Case objArgs(0)
Case "GetYasmEXE"
GetYasmEXE objArgs(1)
Case "GetVSYasmEXE"
GetVSYasmEXE objArgs(1)
End Select
End If
@@ -147,6 +149,14 @@ Sub GetYasmEXE(DestFolder)
End If
End Sub
Sub GetVSYasmEXE(DestFolder)
Dim oExec
If Right(DestFolder, 1) <> "\" Then DestFolder = DestFolder & "\" End If
If Not FSO.FileExists(DestFolder & "vsyasm.exe") Then
Wget ToolsBase & "vsyasm.exe", DestFolder
End If
End Sub
Function Strip(Str)
Set oRE = New Regexp
oRE.Pattern = "[\W_]"