summaryrefslogtreecommitdiff
path: root/river/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'river/meson.build')
-rw-r--r--river/meson.build23
1 files changed, 23 insertions, 0 deletions
diff --git a/river/meson.build b/river/meson.build
new file mode 100644
index 0000000..0cee54d
--- /dev/null
+++ b/river/meson.build
@@ -0,0 +1,23 @@
+project('astal_river',
+ '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('protocols')
+subdir('include')
+subdir('src')