From 4bcf72420e8c8dc78e304c1aa024e3bfa1ef2e92 Mon Sep 17 00:00:00 2001 From: Lars Melchior Date: Wed, 29 Jul 2020 12:58:19 +0200 Subject: [PATCH] add missing dependencies for m.css (#50) --- .github/workflows/documentation.yaml | 6 ++++-- README.md | 2 ++ 2 files changed, 6 insertions(+), 2 deletions(-) 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.