Skip to content

Commit

Permalink
Added logo to doxygen
Browse files Browse the repository at this point in the history
Change-type: minor
Signed-off-by: Alex Bucknall <[email protected]>
  • Loading branch information
Bucknalla committed Apr 10, 2024
1 parent c09279d commit 9bd8f7a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ DOC_OUTPUT_DIR := $(DOC_DIR)/build
# Set the command to generate the documentation
DOC_GENERATOR := doxygen

# Set test outputs
TEST_DIR := twister-*

# Default target
all: docs

Expand All @@ -21,10 +24,11 @@ docs:
$(DOC_GENERATOR) $(DOC_SRC_DIR)/doxygen.config

test:
$(clean)
west twister --device-testing --device-serial /dev/ttyACM0 -p swan_r5 -T tests/integration --integration

# Target to clean the generated documentation
clean:
rm -rf $(DOC_OUTPUT_DIR)
rm -rf $(DOC_OUTPUT_DIR) $(TEST_DIR)

.PHONY: all docs clean
4 changes: 2 additions & 2 deletions docs/doxygen.config
Original file line number Diff line number Diff line change
Expand Up @@ -1313,7 +1313,7 @@ HTML_FILE_EXTENSION = .html
# of the possible markers and block names see the documentation.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_HEADER =
HTML_HEADER = docs/header.html

# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each
# generated HTML page. If the tag is left blank doxygen will generate a standard
Expand All @@ -1323,7 +1323,7 @@ HTML_HEADER =
# that doxygen normally uses.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_FOOTER =
HTML_FOOTER =

# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style
# sheet that is used by each HTML page. It can be used to fine-tune the look of
Expand Down
1 change: 1 addition & 0 deletions docs/header.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<link rel="shortcut icon" href="logo.png" type="image/png">

0 comments on commit 9bd8f7a

Please sign in to comment.