Installing Prerequisites
To build and run the projects in the Ultralight SDK, you'll need the following:
Windows (Windows 7+)
- Git
- CMake (Add it to your PATH during install)
- Visual Studio 2015 or later (We recommend VS 2019 Community Edition, select the C++ tools during install)
macOS (Sierra or later)
- Git (on latest macOS you can just type
git
from Terminal to install if it isn't already) - CMake (May need to run the "Install Command Line Tools" script in the app to add to your PATH)
- Xcode (You can just install the Command Line Tools if you don't need an IDE)
Linux (Ubuntu or Debian 9.5+)
- Git
- CMake (eg,
sudo apt install cmake
) - GCC or Clang (anything that supports C++11 or later) (eg,
sudo apt install build-essential
)
Updated over 5 years ago