-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial framework for generating libblight documentation
- Loading branch information
Showing
11 changed files
with
137 additions
and
10 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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "shared/liboxide/doxygen-awesome-css"] | ||
path = shared/liboxide/doxygen-awesome-css | ||
[submodule "shared/doxygen-awesome-css"] | ||
path = shared/doxygen-awesome-css | ||
url = https://github.com/jothepro/doxygen-awesome-css.git |
Submodule doxygen-awesome-css
added at
df88fe
File renamed without changes.
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,74 @@ | ||
# This file is used to ignore files which are generated | ||
# ---------------------------------------------------------------------------- | ||
|
||
*~ | ||
*.autosave | ||
*.a | ||
*.core | ||
*.moc | ||
*.o | ||
*.obj | ||
*.orig | ||
*.rej | ||
*.so | ||
*.so.* | ||
*_pch.h.cpp | ||
*_resource.rc | ||
*.qm | ||
.#* | ||
*.*# | ||
core | ||
!core/ | ||
tags | ||
.DS_Store | ||
.directory | ||
*.debug | ||
*.prl | ||
*.app | ||
moc_*.cpp | ||
ui_*.h | ||
qrc_*.cpp | ||
Thumbs.db | ||
*.res | ||
*.rc | ||
/.qmake.cache | ||
/.qmake.stash | ||
|
||
# qtcreator generated files | ||
*.pro.user* | ||
|
||
# xemacs temporary files | ||
*.flc | ||
|
||
# Vim temporary files | ||
.*.swp | ||
|
||
# Visual Studio generated files | ||
*.ib_pdb_index | ||
*.idb | ||
*.ilk | ||
*.pdb | ||
*.sln | ||
*.suo | ||
*.vcproj | ||
*vcproj.*.*.user | ||
*.ncb | ||
*.sdf | ||
*.opensdf | ||
*.vcxproj | ||
*vcxproj.* | ||
|
||
# MinGW generated files | ||
*.Debug | ||
*.Release | ||
|
||
# Python byte code | ||
*.pyc | ||
|
||
# Binaries | ||
# -------- | ||
*.dll | ||
*.exe | ||
|
||
html/ | ||
latex/ |
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,20 @@ | ||
PROJECT_NAME = libblight | ||
GENERATE_QHP = YES | ||
GENERATE_LATEX = NO | ||
QCH_FILE = libblight.qch | ||
QHP_NAMESPACE = libblight | ||
QHP_VIRTUAL_FOLDER = doc | ||
QHG_LOCATION = qhelpgenerator | ||
GENERATE_TREEVIEW = YES | ||
HTML_EXTRA_STYLESHEET = ../doxygen-awesome-css/doxygen-awesome.css \ | ||
../doxygen-awesome-css/doxygen-awesome-sidebar-only.css \ | ||
../doxygen-awesome-css/doxygen-awesome-sidebar-only-darkmode-toggle.css | ||
HTML_EXTRA_FILES = ../doxygen-awesome-css/doxygen-awesome-darkmode-toggle.js \ | ||
../doxygen-awesome-css/doxygen-awesome-fragment-copy-button.js \ | ||
../doxygen-awesome-css/doxygen-awesome-paragraph-link.js | ||
HTML_HEADER = ../doxygen-header.html | ||
PREDEFINED = DOXYGEN_SHOULD_SKIP_THIS | ||
HIDE_UNDOC_MEMBERS = YES | ||
HIDE_UNDOC_CLASSES = YES | ||
MACRO_EXPANSION = YES | ||
EXAMPLE_PATH = examples |
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,20 @@ | ||
DIST=../../web/dist/libblight | ||
|
||
all: prod | ||
|
||
html: | ||
doxygen Doxyfile | ||
|
||
$(DIST): html | ||
cp -r html $(DIST) | ||
|
||
prod: $(DIST) | ||
|
||
dev: clean prod | ||
while inotifywait -re close_write,create,delete .; do $(MAKE) clean prod; done | ||
|
||
clean: | ||
rm -rf $(DIST) | ||
rm -rf html | ||
|
||
.PHONY: all prod dev clean |
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
Submodule doxygen-awesome-css
deleted from
4cd623
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