summaryrefslogtreecommitdiff
path: root/minecctl/meson.build
blob: a4a1620612f554d583e4a62233fa0320419d89b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# SPDX-License-Identifier: GPL-2.0
minecctl_sources = [
	'minecctl.c',
	'server.c',
	'rcon-commands.c',
	'mc-commands.c',
	'misc-commands.c',
	'misc.c',
]

dep_readline = dependency('libedit')

minecctl_deps = [
	dep_libshared,
	dep_readline,
]

executable(
	'minecctl',
	minecctl_sources,
	link_args: [ '-lanl' ],
	dependencies: minecctl_deps,
	install: true,
)