diff options
Diffstat (limited to 'auth/meson.build')
-rw-r--r-- | auth/meson.build | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/auth/meson.build b/auth/meson.build deleted file mode 100644 index e9facb1..0000000 --- a/auth/meson.build +++ /dev/null @@ -1,33 +0,0 @@ -project('astal_auth', - 'c', - version : run_command('cat', join_paths(meson.project_source_root(), 'version')).stdout().strip(), - default_options : [ - 'c_std=gnu11', - 'warning_level=3', - 'prefix=/usr' - ] -) - -add_project_arguments( - ['-Wno-pedantic'], - language : 'c') - -version_split = meson.project_version().split('.') -lib_so_version = version_split[0] + '.' + version_split[1] - -pkg_config = import('pkgconfig') -gnome = import('gnome') - -subdir('include') -subdir('src') - - -if get_option('examples') - subdir('examples') -endif - - -install_data( - 'pam/astal-auth', - install_dir : get_option('sysconfdir') / 'pam.d' -) |