From d8802b1fa2c586d05c73e53fb541e1ef482a527e Mon Sep 17 00:00:00 2001 From: kotontrion Date: Sun, 19 May 2024 12:04:34 +0200 Subject: init 0.1.0 --- meson.build | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 meson.build (limited to 'meson.build') 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 -- cgit v1.2.3