Skip to content

Commit

Permalink
Add Doxygen Awesome theme
Browse files Browse the repository at this point in the history
  • Loading branch information
milosz275 committed Jun 29, 2024
1 parent aec3dd9 commit 0ccff00
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/doxygen-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Install Doxygen
run: sudo apt-get update && sudo apt-get install -y doxygen
- name: Install Doxygen and Doxygen Awesome
run: sudo apt-get update && \
sudo apt-get install -y doxygen && \
git clone https://github.com/jothepro/doxygen-awesome-css.git && \
cd doxygen-awesome-css && \
make install

- name: Run Doxygen
run: doxygen
Expand Down
8 changes: 7 additions & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,17 @@ GENERATE_XML = NO
GENERATE_DOCSET = NO
GENERATE_HTMLHELP = NO
GENERATE_CHI = NO
GENERATE_TREEVIEW = YES
USE_MATHJAX = NO
SEARCHENGINE = YES
SERVER_BASED_SEARCH = NO

# Doxygen Awesome
GENERATE_TREEVIEW = YES
DISABLE_INDEX = NO
FULL_SIDEBAR = NO
HTML_EXTRA_STYLESHEET = doxygen-awesome-css/doxygen-awesome.css
HTML_COLORSTYLE = LIGHT

INPUT = ./project-name
FILE_PATTERNS = *.c *.h
RECURSIVE = YES
Expand Down

0 comments on commit 0ccff00

Please sign in to comment.