diff options
author | Aylur <[email protected]> | 2024-06-29 23:49:41 +0200 |
---|---|---|
committer | Aylur <[email protected]> | 2024-06-29 23:49:41 +0200 |
commit | d5cda165eeb4eccba27b209677221eb752e77b8f (patch) | |
tree | e57e7f37c23b4e485ce72291a00e90150f5473c2 | |
parent | 5ed3561c736c8f28a2123905d6ef3b33f9e4d3ee (diff) |
fix typelib name
-rw-r--r-- | src/meson.build | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/meson.build b/src/meson.build index 997c6c9..c9b1fd6 100644 --- a/src/meson.build +++ b/src/meson.build @@ -1,8 +1,7 @@ version_split = meson.project_version().split('.') api_version = version_split[0] + '.' + version_split[1] gir = 'AstalHyprland-' + api_version + '.gir' -typelib = 'AstalHyprland--' + api_version + '.typelib' -so = 'libastal-hyprland.so.' + meson.project_version() +typelib = 'AstalHyprland-' + api_version + '.typelib' config = configure_file( input: 'config.vala.in', |