mirror of
https://github.com/videolan/vlc.git
synced 2024-11-23 09:53:43 +08:00
14 lines
319 B
Meson
14 lines
319 B
Meson
|
vlc_libcompat = []
|
||
|
|
||
|
if libcompat_sources.length() > 0
|
||
|
vlc_libcompat = static_library(
|
||
|
'compat',
|
||
|
libcompat_sources,
|
||
|
include_directories: [vlc_include_dirs],
|
||
|
dependencies: [m_lib],
|
||
|
pic: true,
|
||
|
install: true,
|
||
|
install_dir: get_option('libdir') / 'vlc'
|
||
|
)
|
||
|
endif
|