diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-08-29 21:18:26 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-29 21:18:26 +0300 |
commit | b86f2fd17f1f0825e16b1df2b1f3f598c0d77b85 (patch) | |
tree | e005f958d9a87590fc0a05c88314ed0f160b10a6 /docs/meson.build | |
parent | 28c1f31d7e2b46a8473d8ebe8f029fb7602fde09 (diff) | |
parent | 1ea743a0bfd5ab3ab74009fdd0fb2db64e8e79d8 (diff) | |
download | meson-b86f2fd17f1f0825e16b1df2b1f3f598c0d77b85.zip meson-b86f2fd17f1f0825e16b1df2b1f3f598c0d77b85.tar.gz meson-b86f2fd17f1f0825e16b1df2b1f3f598c0d77b85.tar.bz2 |
Merge pull request #4016 from thiblahute/hotdoc
modules: Add an 'hotdoc' module
Diffstat (limited to 'docs/meson.build')
-rw-r--r-- | docs/meson.build | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/meson.build b/docs/meson.build new file mode 100644 index 0000000..c83d5f8 --- /dev/null +++ b/docs/meson.build @@ -0,0 +1,22 @@ +project('Meson documentation', version: '1.0') + +hotdoc = import('hotdoc') +documentation = hotdoc.generate_doc(meson.project_name(), + project_version: meson.project_version(), + sitemap: 'sitemap.txt', + build_by_default: true, + index: 'markdown/index.md', + install: false, + extra_assets: ['images/'], + include_paths: ['markdown'], + default_license: 'CC-BY-SAv4.0', + html_extra_theme: join_paths('theme', 'extra'), + git_upload_repository: 'git@github.com:jpakkane/jpakkane.github.io.git', + edit_on_github_repository: 'https://github.com/mesonbuild/meson/', + syntax_highlighting_activate: true, +) + +run_target('upload', + command: [find_program('hotdoc'), 'run', '--conf-file', documentation.config_path(), + '--git-upload'] +)
\ No newline at end of file |