From f991de200799118355fd75237a740321bda7aaa7 Mon Sep 17 00:00:00 2001 From: Damian Hobson-Garcia Date: Tue, 24 Nov 2020 17:16:39 +0900 Subject: Add initial version The initial version implements the basic functionality of the client/server communication and lease management. For now, one lease is created per valid connector (dependent on CRTC availablity). Bug-AGL: SPEC-3729 Signed-off-by: Damian Hobson-Garcia Change-Id: I2b37a892742cc22bdc53a5172c8ad3d8a7bb5e66 --- libdlmclient/docs/meson.build | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 libdlmclient/docs/meson.build (limited to 'libdlmclient/docs/meson.build') diff --git a/libdlmclient/docs/meson.build b/libdlmclient/docs/meson.build new file mode 100644 index 0000000..563e5fb --- /dev/null +++ b/libdlmclient/docs/meson.build @@ -0,0 +1,21 @@ +doxygen = find_program('doxygen', required : false) + +readme = join_paths(meson.source_root(), 'README.md') + +if get_option('enable-docs') and doxygen.found() + conf_data = configuration_data() + conf_data.set('README', readme) + conf_data.set('CLIENT_HEADER_DIR', dlmclient_header_dir) + conf_data.set('DOXYGEN_OUTPUT', meson.current_build_dir()) + doxyfile = configure_file( + input: 'Doxyfile.in', + output: 'Doxyfile', + configuration: conf_data + ) + custom_target('docs', + input: [doxyfile, readme, dlmclient_headers], + build_by_default: true, + command: [doxygen, '@INPUT0@'], + output: ['html'] + ) +endif -- cgit 1.2.3-korg