summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorkotontrion <[email protected]>2024-07-16 15:13:00 +0200
committerkotontrion <[email protected]>2024-07-16 15:13:00 +0200
commitbccb03463fc41f2e6c4305a5565d4158a0f797fe (patch)
tree8bba78c11f79ea8ff44d3b16467768ebc010b6e3 /meson.build
initial commit
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build22
1 files changed, 22 insertions, 0 deletions
diff --git a/meson.build b/meson.build
new file mode 100644
index 0000000..b295b31
--- /dev/null
+++ b/meson.build
@@ -0,0 +1,22 @@
+project('astal_wireplumber',
+ 'c',
+ version : '0.1.0',
+ default_options : [
+ 'c_std=gnu11',
+ 'warning_level=3',
+ 'prefix=/usr'
+ ]
+)
+
+add_project_arguments(
+ ['-Wno-pedantic', '-Wno-unused-parameter'],
+ language : 'c')
+
+version_split = meson.project_version().split('.')
+lib_so_version = version_split[0] + '.' + version_split[1]
+
+pkg_config = import('pkgconfig')
+gnome = import('gnome')
+
+subdir('include')
+subdir('src')