Files
zoitechat/data/pkgconfig/meson.build

15 lines
481 B
Meson
Raw Normal View History

pkg_conf = configuration_data()
prefix = get_option('prefix')
pkg_conf.set('prefix', prefix)
pkg_conf.set('VERSION', meson.project_version())
2026-01-05 23:12:38 -07:00
pkg_conf.set('zoitechatlibdir', join_paths('${prefix}', plugindir))
2018-09-23 16:58:18 -04:00
pkg_conf.set('includedir', join_paths('${prefix}', get_option('includedir')))
configure_file(
2026-01-05 23:12:38 -07:00
input: 'zoitechat-plugin.pc.in',
output: 'zoitechat-plugin.pc',
configuration: pkg_conf,
install: true,
install_dir: join_paths(get_option('libdir'), 'pkgconfig'),
)