X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=meson.build;h=c5a3dda26bdcb505d73d635e00d5817aa9ad86c4;hb=035ee5bea5efde0b550bb3f1b5b4b6d35498b8e4;hp=76a14cc6061d38109e35929d2f294142ab290f0d;hpb=28188cee2aa0b72d401d3e56942d0db9c7b9e654;p=dpdk.git diff --git a/meson.build b/meson.build index 76a14cc606..c5a3dda26b 100644 --- a/meson.build +++ b/meson.build @@ -20,6 +20,8 @@ dpdk_driver_classes = [] dpdk_drivers = [] dpdk_extra_ldflags = [] dpdk_app_link_libraries = [] +dpdk_libs_disabled = [] +dpdk_drvs_disabled = [] # configure the build, and make sure configs here and in config folder are # able to be included in any file. We also store a global array of include dirs @@ -112,3 +114,16 @@ foreach class:dpdk_driver_classes endforeach endforeach message(output_message + '\n') + +output_message = '\n=================\nContent Skipped\n=================\n' +output_message += '\nlibs:\n\t' +foreach lib:dpdk_libs_disabled + reason = get_variable(lib.underscorify() + '_disable_reason') + output_message += lib + ':\t' + reason + '\n\t' +endforeach +output_message += '\ndrivers:\n\t' +foreach drv:dpdk_drvs_disabled + reason = get_variable(drv.underscorify() + '_disable_reason') + output_message += drv + ':\t' + reason + '\n\t' +endforeach +message(output_message + '\n')