summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorAylur <[email protected]>2024-07-07 21:51:24 +0200
committerAylur <[email protected]>2024-07-07 21:51:24 +0200
commitc0f813ee589d7f68b1c782bc4d6c14a46ec28b20 (patch)
treecbef85a199e31d1bbd963f6f25961c85653b7004 /meson.build
init 0.1.0
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build14
1 files changed, 14 insertions, 0 deletions
diff --git a/meson.build b/meson.build
new file mode 100644
index 0000000..7877365
--- /dev/null
+++ b/meson.build
@@ -0,0 +1,14 @@
+project(
+ 'astal-bluetooth',
+ 'vala',
+ 'c',
+ version: run_command('cat', join_paths(meson.project_source_root(), 'version')).stdout().strip(),
+ meson_version: '>= 0.62.0',
+ default_options: [
+ 'warning_level=2',
+ 'werror=false',
+ 'c_std=gnu11',
+ ],
+)
+
+subdir('src')