summaryrefslogtreecommitdiff
path: root/gck/meson.build
diff options
context:
space:
mode:
authorCorentin Noël <tintou@noel.tf>2022-03-24 22:25:40 +0100
committerCorentin Noël <tintou@noel.tf>2022-04-09 00:44:24 +0200
commitde604302e51798713da57cf616bd264da934719b (patch)
tree47757265cd8cdf73a0392e2efd6c4758dd1b0f0e /gck/meson.build
parent5ce02fcb0e0b97ad5385e2780d5431c9f88c39bf (diff)
downloadgcr-de604302e51798713da57cf616bd264da934719b.tar.gz
meson: Specify version and soversion for all the libraries
Do not mismatch them.
Diffstat (limited to 'gck/meson.build')
-rw-r--r--gck/meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/gck/meson.build b/gck/meson.build
index 031af51..fa108ef 100644
--- a/gck/meson.build
+++ b/gck/meson.build
@@ -92,7 +92,8 @@ gck_lib = shared_library(gck_basename,
link_args: gck_linkflags,
link_depends: gck_symbolmap,
include_directories: config_h_dir,
- version: gck_soversion,
+ version: gck_version,
+ soversion: gck_soversion,
install: true,
)