diff --git a/.github/workflows/documentation.yaml b/.github/workflows/documentation.yaml index 6ca043a..bed3d4d 100644 --- a/.github/workflows/documentation.yaml +++ b/.github/workflows/documentation.yaml @@ -12,8 +12,10 @@ jobs: steps: - uses: actions/checkout@v1 - - name: Install doxygen - run: brew install doxygen + - name: Install dependencies + run: | + brew install doxygen + pip install jinja2 Pygments - name: Build run: | diff --git a/README.md b/README.md index a106abe..c2f8a53 100644 --- a/README.md +++ b/README.md @@ -94,6 +94,8 @@ cmake --build build/doc --target GenerateDocs open build/doc/doxygen/html/index.html ``` +To build the documentation locally, you will need Doxygen, jinja2 and Pygments on installed your system. + ### Additional tools The test and standalone subprojects include the [tools.cmake](cmake/tools.cmake) file which is used to import additional tools on-demand through CMake configuration arguments.