diff --git a/Building-for-UWP.md b/Building-for-UWP.md new file mode 100644 index 0000000..a550555 --- /dev/null +++ b/Building-for-UWP.md @@ -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. +