You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
319 B
13 lines
319 B
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
|
|
|