# ultralight-quick-start **Repository Path**: herowuking/ultralight-quick-start ## Basic Information - **Project Name**: ultralight-quick-start - **Description**: This is a minimal Ultralight app you can use with the Writing Your First App article in the Ultralight documentation. - **Primary Language**: C/C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-07-28 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ultralight-quick-start __Clone this repo to try a simple Ultralight app!__ This is a minimal Ultralight app you can use with the [Writing Your First App](https://docs.ultralig.ht/docs/writing-your-first-app) article in the Ultralight documentation. ## 1. Install the Prerequisites Before you build and run, you'll need to [install the prerequisites](https://docs.ultralig.ht/docs/installing-prerequisites) for your platform. ## 2. Clone and build the app To clone the repo and build, run the following: ```shell git clone https://github.com/ultralight-ux/ultralight-quick-start cd ultralight-quick-start mkdir build cd build cmake .. cmake --build . --config Release ``` > **Note**: _To force CMake to generate 64-bit projects on Windows, use `cmake .. -DCMAKE_GENERATOR_PLATFORM=x64` instead of `cmake ..`_ ## 3. Run the app ### On macOS and Linux Navigate to `ultralight-quick-start/build` and run `MyApp` to launch the program. ### On Windows Navigate to `ultralight-quick-start/build/Release` and run `MyApp` to launch the program. ## Further Reading Follow the [Writing Your First App](https://docs.ultralig.ht/docs/writing-your-first-app) guide and other tutorials in the documentation for more info.