From a1436cd205f0625ed423d65d033e59a6ca68a707 Mon Sep 17 00:00:00 2001
From: JoinedSenses <joinedsenses@gmail.com>
Date: Mon, 4 Nov 2019 07:34:56 -0500
Subject: [PATCH] Add windows supported SDKs to powershell checkout-deps
 (#1116)

.sh version has this bit:

```
if [ $ismac -eq 0 ]; then
  # Add these SDKs for Windows or Linux
  sdks+=( orangebox blade episode1 bms )

  # Add more SDKs for Windows only
  if [ $iswin -eq 1 ]; then
    sdks+=( darkm swarm bgt eye contagion )
  fi
fi
```

Added these to the SDK list.
---
 tools/checkout-deps.ps1 | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/tools/checkout-deps.ps1 b/tools/checkout-deps.ps1
index 4e710e29..50ab1f2e 100644
--- a/tools/checkout-deps.ps1
+++ b/tools/checkout-deps.ps1
@@ -18,7 +18,17 @@ param(
         'tf2',
         'insurgency',
         'sdk2013',
-        'dota'
+        'dota',
+        'orangebox',
+        'blade',
+        'episode1',
+        'bms',
+        'darkm',
+        'swarm',
+        'bgt',
+        'eye',
+        'contagion',
+        'doi'
         )
 )
 
@@ -78,4 +88,4 @@ Checkout-Repo -Name "ambuild" -Branch "master" -Repo "https://github.com/alliedm
 Set-Location ambuild
 & python setup.py install
 
-Set-Location ..
\ No newline at end of file
+Set-Location ..