meson: use dictionary kwargs
So we don't have to duplicate the libdrm library call just to not set the version keyword for android Reviewed-by: Simon Ser <contact@emersion.fr> Signed-off-by: Dylan Baker <dylan@pnwbakers.com>main
parent
294b9c8322
commit
9324e4f054
20
meson.build
20
meson.build
|
@ -308,22 +308,22 @@ libdrm_files = [files(
|
|||
config_file, format_mod_static_table
|
||||
]
|
||||
|
||||
# Build an unversioned so on android
|
||||
if android
|
||||
libdrm = library('drm', libdrm_files,
|
||||
c_args : libdrm_c_args,
|
||||
dependencies : [dep_valgrind, dep_rt, dep_m],
|
||||
include_directories : inc_drm,
|
||||
install : true,
|
||||
)
|
||||
libdrm_kw = {}
|
||||
else
|
||||
libdrm = library('drm', libdrm_files,
|
||||
libdrm_kw = {'version' : '2.4.0'}
|
||||
endif
|
||||
|
||||
libdrm = library(
|
||||
'drm',
|
||||
libdrm_files,
|
||||
c_args : libdrm_c_args,
|
||||
dependencies : [dep_valgrind, dep_rt, dep_m],
|
||||
include_directories : inc_drm,
|
||||
install : true,
|
||||
version: '2.4.0'
|
||||
)
|
||||
endif
|
||||
kwargs : libdrm_kw,
|
||||
)
|
||||
|
||||
test(
|
||||
'core-symbols-check',
|
||||
|
|
Loading…
Reference in New Issue