Vital.sandbox

Building source

Build Vital.sandbox from source, extend its functionality, or contribute to the project.


Essentials

If you plan to build from source, extend existing functionality, or contribute to Vital.sandbox, this guide walks you through compiling and running the project locally.

Before starting, ensure your development environment is properly configured. Vital.sandbox is written in C++17, requiring a compatible compiler and all necessary dependencies.

Requirements

  • A C++17-compatible compiler (MSVC on Windows, GCC or Clang on Linux)
  • All project dependencies installed and configured
  • The repository cloned locally

Builds

Each build command accepts two arguments: a target and a configuration.

ArgumentOptionDescription
Target--clientBuilds the client
--serverBuilds the server
--allBuilds both client and server
Configuration--debugIncludes debug symbols and logging; suitable for development
--releaseOptimized for production use

Windows

build --[client/server/all] --[debug/release]

Linux

bash build.sh --[client/server/all] --[debug/release]

Optional Flags

FlagDescription
--skip-exportSkips the Godot project export step
--rebuild-godotForces a full rebuild of godot-cpp (only needed after updating the submodule)
--verboseStreams full compiler output live as the build progresses

Artifacts

After a successful build, output files are generated under .dist/[Configuration]/[Target]:

TargetOutput Directory
--client.dist/[debug|release]/client
--server.dist/[debug|release]/server
--allBoth of the above

Each output directory is self-contained and includes all required runtime components.


Contributions

Building from source also enables you to contribute to the project. Whether you are implementing new features, improving existing systems, or fixing issues, contributions are encouraged.

Guidelines

  • Maintain modularity — Keep changes self-contained and avoid unnecessary coupling
  • Validate in debug — Test changes using a debug build before producing a release build
  • Follow existing patterns — Review current modules to ensure consistency in structure and style

Once your changes are ready, open a pull request in the official ov-studio repository for review.

On this page