summaryrefslogtreecommitdiff
path: root/meson.build
blob: 051cdd22c6f78655b3d4362b3cc2fe8172519255 (plain)
1
2
3
4
5
6
7
8
9
project('mcproxy', 'c', default_options : ['c_std=gnu18'])
uring = dependency('liburing')

executable('ctest', 'ctest.c')
executable('stest', 'stest.c')
executable('mcproxy',
		['main.c', 'uring.c', 'server.c', 'proxy.c', 'announce.c', 'cfgdir.c', 'config.c', 'utils.c'],
		dependencies: uring)