Created Building for UWP (markdown)

Josh Matthews
2019-07-04 15:16:23 -04:00
parent cdb0761b83
commit d1114563dd

16
Building-for-UWP.md Normal file

@@ -0,0 +1,16 @@
To set up the required build pieces:
1. Open `support/hololens/ServoApp.sln` in Visual Studio 2017
1. click on _restore nugets packages_ under the context menu of "Solution" (in the right panel). This will automatically download Angle which comes with libEGL.dll, necessary to build servo.
To make a debug build:
1. Open a terminal to the root of the Servo repository.
1. `mach build -d --uwp`
1. When the build is complete, select the "Debug" and "x64" build configurations in Visual Studio.
1. Press the "> Local Machine" button to build and launch the UWP app.
To make a release build:
1. Open a terminal to the root of the Servo repository.
1. `mach build -r --uwp`
1. When the build is complete, select the "Release" and "x64" build configurations in Visual Studio.
1. Press the "> Local Machine" button to build and launch the UWP app.