summaryrefslogtreecommitdiffstats
path: root/doc/meson.build
blob: ef489afa82ba6e6c66187f0b1e3376ef758c9af9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
ronn = find_program('ronn', required: false)
if ronn.found()
    run_target('update-manpage',
        command: [ ronn, '--roff', files(
            'rofi.1.markdown',
            'rofi-theme-selector.1.markdown',
            'rofi-theme.5.markdown',
        )]
    )
endif

doxy_conf = configuration_data()
doxy_conf.set('PACKAGE', meson.project_name())
doxy_conf.set('VERSION', meson.project_version())
doxy_conf.set('abs_builddir', join_paths(meson.build_root(), meson.current_build_dir()))
doxy_conf.set('abs_top_srcdir', meson.source_root())

doxyfile = configure_file(
    input: 'rofi.doxy.in',
    output: 'rofi.doxy',
    configuration: doxy_conf,
    install: false,
)

doxygen = find_program('doxygen', required: false)
if doxygen.found()
    html_target = custom_target('doxy',
        input: doxyfile,
        output: 'html',
        command: [doxygen, doxyfile],
        install: false,
    )
endif