diff options
author | Aylur <[email protected]> | 2024-09-01 02:48:34 +0200 |
---|---|---|
committer | Aylur <[email protected]> | 2024-09-01 02:48:34 +0200 |
commit | d08cc85fc1f7beba59ec74bd1f2d8a804183ce2d (patch) | |
tree | d928490123677a20f3c2f7a1dcf3c6e156bda442 /notifd/meson.build | |
parent | e0c70f09729dfe40c2328bd68257556ac411473e (diff) |
move to monorepo
Diffstat (limited to 'notifd/meson.build')
-rw-r--r-- | notifd/meson.build | 19 |
1 files changed, 19 insertions, 0 deletions
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') |