uvms/pkgs/ch-proxy/meson.build

10 lines
243 B
Meson
Raw Normal View History

2025-09-17 15:51:59 +03:00
project('ch-proxy', 'c')
2026-01-22 14:29:45 +02:00
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)