forked from TheZoc/ZPatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup-external-dependencies.ps1
18 lines (14 loc) · 1.29 KB
/
setup-external-dependencies.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
git submodule update -q --init --recursive
.\libs\curl\projects\generate.bat vc14
Invoke-WebRequest "https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.0/wxWidgets-3.1.0-headers.7z" -outfile "wxWidgets-3.1.0-headers.7z"
Invoke-WebRequest "https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.0/wxMSW-3.1.0_vc140_x64_Dev.7z" -outfile "wxMSW-3.1.0_vc140_x64_Dev.7z"
Invoke-WebRequest "https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.0/wxMSW-3.1.0_vc140_Dev.7z" -outfile "wxMSW-3.1.0_vc140_Dev.7z"
Invoke-WebRequest "https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.0/wxMSW-3.1.0_vc140_ReleaseDLL.7z" -outfile "wxMSW-3.1.0_vc140_ReleaseDLL.7z"
Invoke-WebRequest "https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.0/wxMSW-3.1.0_vc140_x64_ReleaseDLL.7z" -outfile "wxMSW-3.1.0_vc140_x64_ReleaseDLL.7z"
7z.exe x ".\wxWidgets-3.1.0-headers.7z" -o".\libs\wxWidgets"
7z.exe x ".\wxMSW-3.1.0_vc140_x64_Dev.7z" -o".\libs\wxWidgets"
7z.exe x ".\wxMSW-3.1.0_vc140_Dev.7z" -o".\libs\wxWidgets"
7z.exe x ".\wxMSW-3.1.0_vc140_ReleaseDLL.7z" -o".\libs\wxWidgets"
7z.exe x ".\wxMSW-3.1.0_vc140_x64_ReleaseDLL.7z" -o".\libs\wxWidgets"
move ".\libs\wxWidgets\lib\vc140_x64_dll\" ".\libs\wxWidgets\lib\vc_x64_dll\"
move ".\libs\wxWidgets\lib\vc140_dll\" ".\libs\wxWidgets\lib\vc_dll\"