Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 1.01 KB

README.md

File metadata and controls

22 lines (15 loc) · 1.01 KB

pipeline status coverage report

AI

Building and running the unit tests

First, make sure to install the "catch" using the system package manager:sudo apt install catch. After doing this, compile the test suite using make test. You can then run the test suite using make run.

Using the AI in your component

To use the AI, add the include folder into your include search path (INCLUDEPATH += <path> in Qt project) and add the src folder to your sources list (SOURCES += <path>/*.cpp in Qt project)

Generating documentation

First, make sure the graphviz package is installed (sudo apt install graphviz). Then, generate the documentation with make doc. You can then access the documentation at docs/html/index.html.