diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-20 12:27:48 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-20 12:27:48 +0200 |
commit | 92a184fbf8c2b5671032cfcad8ae2f1c9ee39ca7 (patch) | |
tree | 054ace572faabebfc74839afe0d1d3566b6c6db0 /Doxyfile | |
parent | f121de7c7e3ca8f0dc526973a5ee2586485aad22 (diff) |
WIP more documentation
Diffstat (limited to 'Doxyfile')
-rw-r--r-- | Doxyfile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Doxyfile b/Doxyfile new file mode 100644 index 0000000..c3623cc --- /dev/null +++ b/Doxyfile @@ -0,0 +1,21 @@ +# Doxyfile 1.11.0 +DOXYFILE_ENCODING = UTF-8 +PROJECT_NAME = "puzzlebox" +OUTPUT_DIRECTORY = doxygen + +INPUT += client +INPUT += lib/mpack +INPUT += lib/i2ctcp +INPUT += lib/pbdrv +INPUT += main +INPUT += puzzle/dummy + +EXCLUDE = lib/mpack/src +EXCLUDE_PATTERNS = **/build +EXCLUDE_SYMLINKS = YES + +FILE_PATTERNS = *.c *.cpp *.h *.hpp *.md +RECURSIVE = YES + +GENERATE_LATEX = NO + |