Skip to content

Commit

Permalink
Add example C++ code base for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
fknorr committed Feb 18, 2024
1 parent 67e6a0c commit c7c12e9
Show file tree
Hide file tree
Showing 5 changed files with 443 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# ccls and clangd caches
.ccls-cache/
.clangd/
.cache/

# build directories
build*/
Expand Down
11 changes: 11 additions & 0 deletions example/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# ccls and clangd caches
.ccls-cache/
.clangd/
.cache/

# build directories
build*/

# hdoc output and test files
hdoc-test/
hdoc-output/
22 changes: 22 additions & 0 deletions example/.hdoc.toml
Original file line number Diff line number Diff line change
@@ -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]
paths = []
use_system_includes = true

[ignore]
paths = [
"/tests/",
"/subprojects/",
]

[pages]
homepage = "README.md"
Loading

0 comments on commit c7c12e9

Please sign in to comment.