Skip to content

Building

Jonathan Hoffstadt edited this page May 15, 2026 · 16 revisions

Building

The build process for Pilot Light is simple and will stay that way. We do not use a build system. You can use whatever editor or IDE you want. We prefer to use Visual Studio Code which in our opinion provides the most uniform experience across multiple platforms.

If you are using Visual Studio Code, run python scripts/setup.py from terminal to generate the .vscode folder we use and continue to the appropriate operating system section below.

Note

The instructions below use the build scripts checked into the repo. They can be generated by running python3 gen_build.py in the scripts folder.

Windows

Requirements

Instructions

From within a local directory, enter the following commands in your terminal:

git clone https://github.com/PilotLightTech/pilotlight
cd pilotlight/src
build_win32.bat

Binaries will be in pilotlight/out/.

Linux

Requirements

Environment Setup

Those installing the required packages may find the following guide useful: link.

Instructions

From within a local directory, enter the following commands in your terminal:

git clone https://github.com/PilotLightTech/pilotlight
cd pilotlight/src
chmod +x build_linux.sh
./build_linux.sh

Binaries will be in pilotlight/out/.

MacOS

Requirements

Instructions

From within a local directory, enter the following commands in your terminal:

git clone https://github.com/PilotLightTech/pilotlight
cd pilotlight/src
chmod +x build_macos.sh
./build_macos.sh

Binaries will be in pilotlight/out/.

Contributor Docs

User Docs

Clone this wiki locally