Clone this repo to try a simple Ultralight app!
This is a minimal Ultralight app you can use with the Writing Your First App article in the Ultralight documentation.
Before you build and run, you'll need to install the prerequisites for your platform.
You'll also need Visual Studio Code to build and run this app.
Clone the repo if you haven't done so already:
git clone git@github.com:ultralight-ux/ultralight-quick-start.git
Download the Ultralight SDK and extract the contents to ultralight-quick-start/SDK
.
- Open the
ultralight-quick-start
folder in VS Code - Install the recommended extensions when prompted (C/C++ and CMake Tools)
- Select your preferred build preset (Release or Debug) when prompted
- Build the project using one of these methods:
- Click the "Build" button in the CMake status bar
- Run the "Build (Release)" or "Build (Debug)" task from the Terminal menu
- Press F7 to build with the default configuration
After building, you can run and debug the app:
- Open the "Run and Debug" view (Ctrl+Shift+D)
- Select "MyApp" from the dropdown
- Press F5 to start debugging or Ctrl+F5 to run without debugging
Follow the Writing Your First App guide and other tutorials in the documentation for more info.