summaryrefslogtreecommitdiff
path: root/meson.build
blob: 85dbab9e0b8ae8a52be70291efdf85888a2c2c42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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',
		 'idle.c',
		 'utils.c'],
		dependencies: uring)