fixup! taps: wip: init

This commit is contained in:
Else, Someone 2026-01-22 14:29:45 +02:00
parent ad06eaea1c
commit a75d0b8e5d
7 changed files with 57 additions and 49 deletions

View file

@ -1,3 +1,9 @@
project('ch-proxy', 'c')
executable('ch-proxy', 'proxy.c', install: true)
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)