Codespaces setup¶
This repo includes a .devcontainer/ configuration so you can use GitHub Codespaces.
Steps¶
- Open the repository in GitHub.
- Click Code -> Codespaces -> Create codespace on main.
- Wait for the container to build.
- Build the project:
cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=RelWithDebInfo
cmake --build build -j$(nproc)
ctest --test-dir build --output-on-failure