meson: library soversion arg should be string
muon, a meson implementation in C, is more strict with its types and revealed this discrepancy between meson behavior and documentation.
This commit is contained in:
parent
845256009b
commit
d5539dead8
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,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/backend/noop.c' ],
|
[ 'libseat/libseat.c', 'libseat/backend/noop.c' ],
|
||||||
soversion: libseat_soversion,
|
soversion: '@0@'.format(libseat_soversion),
|
||||||
link_with: private_lib,
|
link_with: private_lib,
|
||||||
include_directories: [include_directories('.', 'include')],
|
include_directories: [include_directories('.', 'include')],
|
||||||
install: true,
|
install: true,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue