diff options
author | Aylur <[email protected]> | 2024-06-20 16:55:09 +0200 |
---|---|---|
committer | Aylur <[email protected]> | 2024-06-20 16:55:09 +0200 |
commit | df041628ad84d3acf5497fc4bbc7a542059df079 (patch) | |
tree | 6c6af6233a0811489abbf7acf9cb73d60f531c65 | |
parent | 0d262d6f8bf7fa788922f0ed6c58203ac6ac11d4 (diff) |
fix vapi names
-rw-r--r-- | src/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/meson.build b/src/meson.build index 9d56c3d..e06f894 100644 --- a/src/meson.build +++ b/src/meson.build @@ -34,8 +34,8 @@ if get_option('lib') meson.project_name(), sources, dependencies: deps, - vala_header: meson.project_name() + '.h', - vala_vapi: meson.project_name() + '.vapi', + vala_header: meson.project_name() + '-' + api_version + '.h', + vala_vapi: meson.project_name() + '-' + api_version + '.vapi', vala_gir: gir, version: meson.project_version(), install: true, |