diff options
Diffstat (limited to 'src/meson.build')
-rw-r--r-- | src/meson.build | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/meson.build b/src/meson.build index 78f1f2c..9f02aae 100644 --- a/src/meson.build +++ b/src/meson.build @@ -17,6 +17,19 @@ astal_auth_lib = library( install : true ) +libastal_auth = declare_dependency( + link_with : astal_auth_lib, + include_directories : astal_auth_inc) + +astal_auth_executable = executable( + 'astal-auth', + files('astal-auth.c'), + dependencies : [ + dependency('gobject-2.0'), + libastal_auth + ], + install : true) + pkg_config_name = 'astal-auth-' + lib_so_version if get_option('introspection') @@ -49,4 +62,4 @@ pkg_config.generate( filebase : pkg_config_name, subdirs : 'astal', description : 'astal authentication module', - url : 'https://github.com/kotontrion/astal-auth') + url : 'https://github.com/astal-sh/libastal-auth') |