summaryrefslogtreecommitdiff
path: root/bluetooth/meson.build
diff options
context:
space:
mode:
authorAylur <[email protected]>2024-09-01 03:19:54 +0200
committerAylur <[email protected]>2024-09-01 03:19:54 +0200
commitc5342a93cc98569695474c692ef40f1e851c2912 (patch)
tree857f05816be0475fca2cf36fc85ecdda46380da6 /bluetooth/meson.build
parentce866f7b0af13511cf6ab95998b252cb9b7c93aa (diff)
move to monorepo
Diffstat (limited to 'bluetooth/meson.build')
-rw-r--r--bluetooth/meson.build14
1 files changed, 14 insertions, 0 deletions
diff --git a/bluetooth/meson.build b/bluetooth/meson.build
new file mode 100644
index 0000000..7877365
--- /dev/null
+++ b/bluetooth/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')