-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
2,036 additions
and
772 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,19 +10,12 @@ jobs: | |
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: install Doxygen 1.9.2 | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y graphviz libclang-cpp1-9 libclang1-9 | ||
wget https://www.doxygen.nl/files/doxygen-1.9.2.linux.bin.tar.gz | ||
tar -xvzf doxygen-1.9.2.linux.bin.tar.gz | ||
ln -s doxygen-1.9.2/bin/doxygen doxygen | ||
- name: set version | ||
run: echo "PROJECT_NUMBER = `git describe --tags`" >> Doxyfile | ||
- name: Generate Documentation | ||
run: ./doxygen Doxyfile | ||
uses: mattnotmitt/doxygen-action@edge | ||
- name: Publish generated content to GitHub Pages | ||
uses: tsunematsu21/[email protected].1 | ||
uses: tsunematsu21/[email protected].2 | ||
with: | ||
dir: docs/html | ||
branch: gh-pages | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
docs/html | ||
.DS_Store | ||
.idea | ||
.idea | ||
|
||
node_modules | ||
*.tgz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
* | ||
!doxygen-awesome* | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# SPDX-FileCopyrightText: 2022 Andrea Pappacoda <[email protected]> | ||
# SPDX-License-Identifier: MIT | ||
|
||
.POSIX: | ||
|
||
PROJECT = doxygen-awesome-css | ||
|
||
# Paths | ||
PREFIX = /usr/local | ||
DATADIR = share | ||
INSTALLDIR = $(DESTDIR)$(PREFIX)/$(DATADIR)/$(PROJECT) | ||
|
||
# Utilities | ||
INSTALL = install -m 644 | ||
MKDIR = mkdir -p | ||
RM = rm -f | ||
|
||
# Files to be installed | ||
FILES = doxygen-awesome-darkmode-toggle.js \ | ||
doxygen-awesome-fragment-copy-button.js \ | ||
doxygen-awesome-interactive-toc.js \ | ||
doxygen-awesome-paragraph-link.js \ | ||
doxygen-awesome-sidebar-only-darkmode-toggle.css \ | ||
doxygen-awesome-sidebar-only.css \ | ||
doxygen-awesome-tabs.js \ | ||
doxygen-awesome.css | ||
|
||
# Empty targets so that `make` and `make clean` do not cause errors | ||
all: | ||
clean: | ||
|
||
install: | ||
$(MKDIR) $(INSTALLDIR) | ||
$(INSTALL) $(FILES) $(INSTALLDIR)/ | ||
|
||
uninstall: | ||
$(RM) -r $(INSTALLDIR)/ | ||
|
||
.PHONY: all clean install uninstall |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.