uvms/pkgs/ch-proxy/meson.build
2026-01-22 14:29:45 +02:00

9 lines
243 B
Meson

project('ch-proxy', 'c')
pkg = import('pkgconfig')
sendfd = library('sendfd', [ 'sendfd.c', 'sendfd.h' ], install: true)
pkg.generate(sendfd)
install_headers('sendfd.h')
executable('ch-proxy', 'proxy.c', link_with: [sendfd], install: true)