File: meson.build

package info (click to toggle)
gdbuspp 3-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,164 kB
  • sloc: cpp: 9,462; python: 477; sh: 215; makefile: 11
file content (18 lines) | stat: -rw-r--r-- 512 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#  GDBus++ - glib2 GDBus C++ wrapper
#
#  SPDX-License-Identifier: AGPL-3.0-only
#
#  Copyright (C)  OpenVPN Inc <sales@openvpn.net>
#  Copyright (C)  David Sommerseth <davids@openvpn.net>

cfgdata = configuration_data()
cfgdata.set('doxygen_builddir', meson.current_build_dir())
cfgdata.set('top_srcdir', meson.project_source_root())

doxygen_conf = configure_file(
  input : 'gdbuspp.doxy.in',
  output : 'gdbuspp.doxy',
  configuration : cfgdata,
)

run_target('doxygen', command : ['doxygen', doxygen_conf])