libseat: Version the .so file

This commit is contained in:
Kenny Levinsen 2020-09-08 00:00:48 +02:00
parent 8813671486
commit d4b1f4d449

View file

@ -11,6 +11,9 @@ project(
], ],
) )
# Bump whenever ABI-breaking changes occur.
libseat_soversion = 1
add_project_arguments( add_project_arguments(
[ [
'-Wundef', '-Wundef',
@ -135,6 +138,7 @@ symbols_flag = '-Wl,--version-script,@0@/@1@'.format(meson.current_source_dir(),
lib = library( lib = library(
'seat', # This results in the library being called 'libseat' 'seat', # This results in the library being called 'libseat'
[ 'libseat/libseat.c' ], [ 'libseat/libseat.c' ],
soversion: libseat_soversion,
link_with: private_lib, link_with: private_lib,
include_directories: [include_directories('.', 'include')], include_directories: [include_directories('.', 'include')],
install: true, install: true,