summaryrefslogtreecommitdiff
path: root/bittorrent/meson.build
diff options
context:
space:
mode:
authorMartial Simon <msimon_fr@hotmail.com>2025-09-15 01:07:58 +0200
committerMartial Simon <msimon_fr@hotmail.com>2025-09-15 01:07:58 +0200
commit967be9e750221ab2ab783f95df79bb26d290a45e (patch)
tree6802900a5e975f9f68b169f0f503f040056d6952 /bittorrent/meson.build
add: added projectsHEADmain
Diffstat (limited to 'bittorrent/meson.build')
-rw-r--r--bittorrent/meson.build15
1 files changed, 15 insertions, 0 deletions
diff --git a/bittorrent/meson.build b/bittorrent/meson.build
new file mode 100644
index 0000000..e9dfa6c
--- /dev/null
+++ b/bittorrent/meson.build
@@ -0,0 +1,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
+ ],
+) \ No newline at end of file