Build and run the test suite:
cmake -S . -B build
cmake --build build
cmake --build build --target testThird-party dependencies are cloned at configure time; an Internet connection is required for the first build.
Format the source tree with:
cmake --build build --target formatRun static analysis and formatting checks with:
cmake --build build --target lintContributions are welcome! Please:
-
Fork the repository and create a topic branch.
-
Ensure the project builds and tests pass:
cmake -S . -B build cmake --build build cmake --build build --target test cmake --build build --target lint
-
Use
cmake --build build --target formatto apply formatting. -
Open a pull request describing your changes.