We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67e6a0c commit c7c12e9Copy full SHA for c7c12e9
5 files changed
.gitignore
@@ -1,6 +1,7 @@
1
# ccls and clangd caches
2
.ccls-cache/
3
.clangd/
4
+.cache/
5
6
# build directories
7
build*/
example/.gitignore
@@ -0,0 +1,11 @@
+# ccls and clangd caches
+.ccls-cache/
+.clangd/
+
+# build directories
+build*/
8
9
+# hdoc output and test files
10
+hdoc-test/
11
+hdoc-output/
example/.hdoc.toml
@@ -0,0 +1,22 @@
+[project]
+name = "example"
+version = "0.0.1"
+git_repo_url = "https://github.com/example/example/"
+git_default_branch = "main"
+[paths]
+compile_commands = "build/compile_commands.json"
+output_dir = "hdoc-output"
+[includes]
12
+paths = []
13
+use_system_includes = true
14
15
+[ignore]
16
+paths = [
17
+ "/tests/",
18
+ "/subprojects/",
19
+]
20
21
+[pages]
22
+homepage = "README.md"
0 commit comments