mirror of
https://github.com/videolan/vlc.git
synced 2024-11-23 09:53:43 +08:00
d5f07af209
Co-authored-by: Tanguy Dubroca <tanguy.dubroca@lse.epita.fr> Co-authored-by: Hugo Beauzée-Luyssen <hugo@beauzee.fr> Co-authored-by: Alexandre Janniaux <ajanni@videolabs.io>
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
|