diff options
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meson.build b/meson.build new file mode 100644 index 0000000..34ab7c8 --- /dev/null +++ b/meson.build @@ -0,0 +1,28 @@ +project('astal_auth', + 'c', + version : '0.1.0', + default_options : [ + 'c_std=gnu11', + 'warning_level=3', + 'prefix=/usr' + ] +) + +add_project_arguments( + ['-Wno-pedantic'], + language : 'c') + +lib_so_version = 0 + +pkg_config = import('pkgconfig') +gnome = import('gnome') + +subdir('include') +subdir('src') +subdir('examples') + + +install_data( + 'pam/astal-auth', + install_dir : get_option('sysconfdir') / 'pam.d' +)
\ No newline at end of file |