Skip to content
This repository was archived by the owner on Jun 21, 2025. It is now read-only.

Latest commit

 

History

History
31 lines (23 loc) · 1.08 KB

File metadata and controls

31 lines (23 loc) · 1.08 KB

Developer Info

This application is maintained and developed by CVision, but we welcome contributions from individuals and other organizations. Feel free to contact us on our website if you have an idea, feature request, or contribution to make.

Coding style

This project uses the Google C++ style guide. Refer to this for coding practices and naming conventions.

Running unit tests

When running cmake, the option BUILD_TESTS must be enabled.

After CMake has been run the ALL_BUILD or INSTALL target has been built, unit tests can be run by typing:

cmake --build . --target RUN_TESTS --config Release

or on linux/mac:

make test