Add initial version
[src/drm-lease-manager.git] / libdlmclient / docs / meson.build
diff --git a/libdlmclient/docs/meson.build b/libdlmclient/docs/meson.build
new file mode 100644 (file)
index 0000000..563e5fb
--- /dev/null
@@ -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