Initial commit
This commit is contained in:
2702
docs/Doxyfile.in
Normal file
2702
docs/Doxyfile.in
Normal file
File diff suppressed because it is too large
Load Diff
7908
docs/doxygen-awesome.css
Normal file
7908
docs/doxygen-awesome.css
Normal file
File diff suppressed because one or more lines are too long
4
docs/mainpage.md
Normal file
4
docs/mainpage.md
Normal file
@ -0,0 +1,4 @@
|
||||
\mainpage
|
||||
|
||||
## Header
|
||||
${REPO_DESCRIPTION}
|
||||
24
docs/meson.build
Normal file
24
docs/meson.build
Normal file
@ -0,0 +1,24 @@
|
||||
cdata = configuration_data()
|
||||
cdata.set('VERSION', meson.project_version())
|
||||
cdata.set('PROJECTNAME', meson.project_name())
|
||||
cdata.set('TOP_SRCDIR', meson.source_root())
|
||||
cdata.set('TOP_BUILDDIR', meson.build_root())
|
||||
cdata.set('DOXYGEN_AWESOME', join_paths(meson.current_source_dir(), 'doxygen-awesome.css'))
|
||||
cdata.set('DOC_OUTPUT_DIR', meson.current_build_dir())
|
||||
|
||||
if find_program('dot', required : false).found()
|
||||
cdata.set('HAVE_DOT', 'YES')
|
||||
else
|
||||
cdata.set('HAVE_DOT', 'NO')
|
||||
endif
|
||||
|
||||
doxyfile = configure_file(input: 'Doxyfile.in',
|
||||
output: 'Doxyfile',
|
||||
configuration: cdata,
|
||||
install: false)
|
||||
|
||||
html_target = custom_target('docs',
|
||||
input: doxyfile,
|
||||
output: 'html',
|
||||
command: [doxygen, doxyfile],
|
||||
install: false)
|
||||
Reference in New Issue
Block a user