diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/_static/meson.build | 3 | ||||
-rw-r--r-- | doc/c/api/meson.build | 3 | ||||
-rw-r--r-- | doc/c/meson.build | 3 | ||||
-rw-r--r-- | doc/c/xml/meson.build | 3 | ||||
-rw-r--r-- | doc/cpp/api/meson.build | 3 | ||||
-rw-r--r-- | doc/cpp/meson.build | 3 | ||||
-rw-r--r-- | doc/cpp/xml/meson.build | 3 | ||||
-rw-r--r-- | doc/meson.build | 3 |
8 files changed, 24 insertions, 0 deletions
diff --git a/doc/_static/meson.build b/doc/_static/meson.build index fc7792c..d3296c6 100644 --- a/doc/_static/meson.build +++ b/doc/_static/meson.build @@ -1,2 +1,5 @@ +# Copyright 2021 David Robillard <d@drobilla.net> +# SPDX-License-Identifier: CC0-1.0 OR ISC + configure_file(copy: true, input: '../../resources/pugl.svg', output: 'pugl.svg') diff --git a/doc/c/api/meson.build b/doc/c/api/meson.build index 5c1e30e..001d908 100644 --- a/doc/c/api/meson.build +++ b/doc/c/api/meson.build @@ -1,3 +1,6 @@ +# Copyright 2021 David Robillard <d@drobilla.net> +# SPDX-License-Identifier: CC0-1.0 OR ISC + c_pugl_rst = custom_target( 'C API ReST Documentation', command: [dox_to_sphinx, '-f', '@INPUT0@', 'doc/c/api'], diff --git a/doc/c/meson.build b/doc/c/meson.build index 65302b3..8592f75 100644 --- a/doc/c/meson.build +++ b/doc/c/meson.build @@ -1,3 +1,6 @@ +# Copyright 2021 David Robillard <d@drobilla.net> +# SPDX-License-Identifier: CC0-1.0 OR ISC + config = configuration_data() config.set('PUGL_VERSION', meson.project_version()) diff --git a/doc/c/xml/meson.build b/doc/c/xml/meson.build index ea5df9c..3974d09 100644 --- a/doc/c/xml/meson.build +++ b/doc/c/xml/meson.build @@ -1,3 +1,6 @@ +# Copyright 2021 David Robillard <d@drobilla.net> +# SPDX-License-Identifier: CC0-1.0 OR ISC + doxygen = find_program('doxygen') c_doxygen_input = [] diff --git a/doc/cpp/api/meson.build b/doc/cpp/api/meson.build index 4e5bae5..ce462ed 100644 --- a/doc/cpp/api/meson.build +++ b/doc/cpp/api/meson.build @@ -1,3 +1,6 @@ +# Copyright 2021 David Robillard <d@drobilla.net> +# SPDX-License-Identifier: CC0-1.0 OR ISC + cpp_pugl_rst = custom_target( 'C++ API ReST Documentation', command: [dox_to_sphinx, '-l', 'cpp', '-f', '@INPUT@', meson.current_build_dir()], diff --git a/doc/cpp/meson.build b/doc/cpp/meson.build index 358a042..ec67d39 100644 --- a/doc/cpp/meson.build +++ b/doc/cpp/meson.build @@ -1,3 +1,6 @@ +# Copyright 2021 David Robillard <d@drobilla.net> +# SPDX-License-Identifier: CC0-1.0 OR ISC + config = configuration_data() config.set('PUGL_VERSION', meson.project_version()) diff --git a/doc/cpp/xml/meson.build b/doc/cpp/xml/meson.build index d23a563..51dc942 100644 --- a/doc/cpp/xml/meson.build +++ b/doc/cpp/xml/meson.build @@ -1,3 +1,6 @@ +# Copyright 2021 David Robillard <d@drobilla.net> +# SPDX-License-Identifier: CC0-1.0 OR ISC + doxygen = find_program('doxygen') cpp_doxygen_input = [] diff --git a/doc/meson.build b/doc/meson.build index 583f09d..ccae6e3 100644 --- a/doc/meson.build +++ b/doc/meson.build @@ -1,3 +1,6 @@ +# Copyright 2021 David Robillard <d@drobilla.net> +# SPDX-License-Identifier: CC0-1.0 OR ISC + docdir = get_option('datadir') / 'doc' doxygen = find_program('doxygen', required: get_option('docs')) |