summaryrefslogtreecommitdiff
path: root/bittorrent/meson.build
blob: e9dfa6ca647fa097389ff6cc80407cd1585f66e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
project(
	'bittorrent', # project name
	'c', # project language
	meson_version: '>= 1.1.0', # meson minimum version
	version: '1.0.0', # project version
	default_options: [
		'c_args=-D_GNU_SOURCE',
		'c_std=c99', # -std=c99
		'debug=true', # -g
		'optimization=0', # -O0
		'warning_level=3', # -Wall -Wextra -Wpedantic
		'werror=true', # -Werror
		'b_sanitize=address,undefined', # -fsanitize=address,undefined
	],
)