Skip to content
Snippets Groups Projects
Commit ee2b35f5 authored by Fatih Uzunoğlu's avatar Fatih Uzunoğlu Committed by Steve Lhomme
Browse files

meson: add option to specify extra_files

parent 385339ea
No related branches found
Tags 3.0.1
1 merge request!4799meson: add option to specify extra_files
Pipeline #438723 passed with warnings with stage
in 19 minutes and 16 seconds
......@@ -279,6 +279,7 @@ foreach module : vlc_modules
'c_args',
'cpp_args',
'objc_args',
'extra_files',
]
foreach key : module.keys()
if key not in valid_dict_keys
......@@ -309,6 +310,7 @@ foreach module : vlc_modules
c_args: [module.get('c_args', []), common_args],
cpp_args: [module.get('cpp_args', []), common_args],
objc_args: [module.get('objc_args', []), common_args],
extra_files: module.get('extra_files', []),
build_by_default: true,
install: true,
install_dir: get_option('libdir') / 'vlc/plugins',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment