doc/meson.build

Mon, 13 Nov 2023 21:40:33 -0600

author
Elliott Sales de Andrade <quantum.analyst@gmail.com>
date
Mon, 13 Nov 2023 21:40:33 -0600
changeset 42489
0edea2beaa95
parent 42372
ba3a49903905
child 42678
0b9b81b6ff18
permissions
-rw-r--r--

Use libraries when generating pkgconfig files

This argument magically Does The Right Thing for both external and subproject
requirements, [though the docs are missing that](https://github.com/mesonbuild/meson/issues/6037#issuecomment-543938956).

Testing Done:
Compiled and checked the `meson-private/*.pc` files seemed alright still.

Reviewed at https://reviews.imfreedom.org/r/2804/

subdir('reference')

if ENABLE_GTK
	configure_file(
	    input : 'pidgin3.1.in',
	    output : 'pidgin3.1',
	    configuration : man_conf,
	    install : true,
	    install_dir : get_option('mandir') / 'man1')
endif

if enable_consoleui
	configure_file(
	    input : 'finch3.1.in',
	    output : 'finch3.1',
	    configuration : man_conf,
	    install : true,
	    install_dir : get_option('mandir') / 'man1')
endif

mercurial