diff options
author | kotontrion <[email protected]> | 2024-05-19 12:04:34 +0200 |
---|---|---|
committer | kotontrion <[email protected]> | 2024-05-19 12:04:34 +0200 |
commit | d8802b1fa2c586d05c73e53fb541e1ef482a527e (patch) | |
tree | 0196108ca63c7e5b7b3a23296aa4508f916b536e /meson.build | |
parent | 3fc76b2f36e1bdebf2bd7a91af5469aff18ce852 (diff) |
init 0.1.0
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 |