diff options
-rw-r--r-- | script/install_packages.ps1 | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/script/install_packages.ps1 b/script/install_packages.ps1 deleted file mode 100644 index 57109e6d..00000000 --- a/script/install_packages.ps1 +++ /dev/null @@ -1,21 +0,0 @@ -function CheckLastExitCode -{ - if ($LASTEXITCODE -ne 0) - { - exit $LASTEXITCODE - } -} - -git clone https://github.com/Microsoft/vcpkg.git --depth=1 -& CheckLastExitCode - -cd vcpkg - -& .\bootstrap-vcpkg.bat -& CheckLastExitCode - -.\vcpkg.exe install folly:x64-windows fmt:x64-windows -& CheckLastExitCode - -.\vcpkg.exe integrate install -& CheckLastExitCode |