From d08cc85fc1f7beba59ec74bd1f2d8a804183ce2d Mon Sep 17 00:00:00 2001 From: Aylur Date: Sun, 1 Sep 2024 02:48:34 +0200 Subject: move to monorepo --- notifd/meson.build | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 notifd/meson.build (limited to 'notifd/meson.build') diff --git a/notifd/meson.build b/notifd/meson.build new file mode 100644 index 0000000..8fabdb4 --- /dev/null +++ b/notifd/meson.build @@ -0,0 +1,19 @@ +project( + 'astal-notifd', + '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', + ], +) + +assert( + get_option('lib') or get_option('cli'), + 'Either lib or cli option must be set to true.', +) + +subdir('src') -- cgit v1.2.3