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