Hello, On 7/8/20 7:48 AM, Ariel D'Alessandro wrote:
I've pushed meson Doxygen support to: https://gitlab.com/adalessandro/v4l-utils/-/tree/v4l-utils-1.20.0-meson-v1 The following options were added, supporting html and man. # Doxygen options option('doxygen-doc', type : 'feature', value : 'auto', description : 'Generate doxygen project documentation') option('doxygen-html', type : 'boolean', description : 'Generate doxygen plain HTML documentation') option('doxygen-man', type : 'boolean', value : false, description : 'Generate doxygen manual pages') So, you should get html and man documentation using: CONFIGURE_FLAGS += -Ddoxygen-doc=enabled -Ddoxygen-man=enabled Note that documentation will be installed to: doxygen_install_dir = join_paths(get_option('datadir'), 'doc', '@0@-@1@'.format(meson.project_name(), as_version)) Using default values, that'd be: /usr/local/share/doc/v4l-utils-1.20.0/
I changed the code above to omit the version and now I have working Debian packages. I need to test the packages on a real Linux Desktop but that will have to wait until I can re-enter our offices.
Acked-by: Gregor Jasny <gjasny@xxxxxxxxxxxxxx> Thanks, Gregor