many structural changes
This commit is contained in:
BIN
doc/MER.dia
Normal file
BIN
doc/MER.dia
Normal file
Binary file not shown.
36
doc/meson.build
Normal file
36
doc/meson.build
Normal file
@@ -0,0 +1,36 @@
|
||||
docs_enabled = get_option('valadocs')
|
||||
valadoc = find_program('valadoc', required: docs_enabled)
|
||||
vala_doc_sources = vala_sources
|
||||
if docs_enabled
|
||||
valadocs_deps = get_option('valadocs_deps')
|
||||
docs_deps = ['--pkg=gtk+-3.0']
|
||||
docs_deps += ['--pkg=libpq']
|
||||
docs_deps += ['--pkg=libconfig']
|
||||
docs_deps += ['--pkg=posix']
|
||||
if valadocs_deps
|
||||
docs_deps += ['--deps']
|
||||
endif
|
||||
custom_target('valadoc',
|
||||
input: vala_doc_sources,
|
||||
output: 'valadoc',
|
||||
command: [ valadoc,
|
||||
docs_deps,
|
||||
'--use-svg-images',
|
||||
'--doclet=html',
|
||||
'--force',
|
||||
'--package-name=@0@'.format(meson.project_name()),
|
||||
'--package-version=@0@'.format(meson.project_version()),
|
||||
'--vapidir=@0@'.format(join_paths(meson.source_root(), 'src/vapi')),
|
||||
'--directory=@OUTDIR@/valadoc',
|
||||
vala_doc_sources,
|
||||
],
|
||||
build_by_default: true,
|
||||
install: true,
|
||||
install_dir: join_paths(get_option('datadir'), 'doc', meson.project_name())
|
||||
)
|
||||
endif
|
||||
|
||||
install_data('trabajoSemestral(E1).pdf', install_dir: join_paths(get_option('datadir'), 'doc', meson.project_name()))
|
||||
install_data('MER.dia', install_dir: join_paths(get_option('datadir'), 'doc', meson.project_name()))
|
||||
install_data('../LICENSE', install_dir: join_paths(get_option('datadir'), 'doc', meson.project_name()))
|
||||
install_data('../README.md', install_dir: join_paths(get_option('datadir'), 'doc', meson.project_name()))
|
BIN
doc/trabajoSemestral(E1).pdf
Normal file
BIN
doc/trabajoSemestral(E1).pdf
Normal file
Binary file not shown.
Reference in New Issue
Block a user