SDL: UWP build (#5299)

From 2005dd95953225dc4221322c10b08bc0ee89941c Mon Sep 17 00:00:00 2001
From: Ravbug <[EMAIL REDACTED]>
Date: Wed, 2 Feb 2022 17:06:52 -0500
Subject: [PATCH] UWP build (#5299)

* Add UWP-x64 action

* Fix formatting

* Fix missing -
---
 .github/workflows/uwp.yml | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 .github/workflows/uwp.yml

diff --git a/.github/workflows/uwp.yml b/.github/workflows/uwp.yml
new file mode 100644
index 00000000000..8a60defb04c
--- /dev/null
+++ b/.github/workflows/uwp.yml
@@ -0,0 +1,15 @@
+name: Build (UWP)
+
+on: [push, pull_request]
+
+jobs:
+  Build:
+    name: UWP-x64
+    runs-on: windows-latest
+
+    steps:
+      - uses: actions/checkout@v2
+      - name: Configure
+        run: mkdir build; cd build; cmake -Ax64 -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0" -DCMAKE_BUILD_TYPE=Release ..
+      - name: Build
+        run: cd build; cmake --build .