diff options
author | Wu Xiaotian <[email protected]> | 2019-06-19 22:04:32 +0800 |
---|---|---|
committer | lukefromdc <[email protected]> | 2019-07-13 22:26:39 +0000 |
commit | d86c29b0e518f765e7570573c76bc033fbd17f6d (patch) | |
tree | a4ac9135d5328c8955f4a60b70ee86a5ee22150c /doc | |
parent | 9c6676b1efa27aa103b5eddb28f97488a63a5190 (diff) | |
download | marco-d86c29b0e518f765e7570573c76bc033fbd17f6d.tar.bz2 marco-d86c29b0e518f765e7570573c76bc033fbd17f6d.tar.xz |
switch to use meson build system
Diffstat (limited to 'doc')
-rw-r--r-- | doc/creating_themes/meson.build | 3 | ||||
-rw-r--r-- | doc/man/meson.build | 6 | ||||
-rw-r--r-- | doc/meson.build | 2 |
3 files changed, 11 insertions, 0 deletions
diff --git a/doc/creating_themes/meson.build b/doc/creating_themes/meson.build new file mode 100644 index 00000000..b62499e6 --- /dev/null +++ b/doc/creating_themes/meson.build @@ -0,0 +1,3 @@ +install_data('C/index.docbook', + install_dir : join_paths(get_option('datadir'), 'help', 'C', 'creating-marco-themes')) + diff --git a/doc/man/meson.build b/doc/man/meson.build new file mode 100644 index 00000000..b565046f --- /dev/null +++ b/doc/man/meson.build @@ -0,0 +1,6 @@ +install_man(['marco.1', + 'marco-theme-viewer.1', + 'marco-window-demo.1', + 'marco-message.1'] + ) + diff --git a/doc/meson.build b/doc/meson.build new file mode 100644 index 00000000..6450e842 --- /dev/null +++ b/doc/meson.build @@ -0,0 +1,2 @@ +subdir('man') +subdir('creating_themes') |