X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=meson.build;h=b7ae9c8d9aeef46d4e4888335e146cb8f6693dc3;hb=93eb13bcb6baf5146798c23ef071ab2ae2489a4f;hp=76a14cc6061d38109e35929d2f294142ab290f0d;hpb=28188cee2aa0b72d401d3e56942d0db9c7b9e654;p=dpdk.git diff --git a/meson.build b/meson.build index 76a14cc606..b7ae9c8d9a 100644 --- a/meson.build +++ b/meson.build @@ -20,6 +20,9 @@ dpdk_driver_classes = [] dpdk_drivers = [] dpdk_extra_ldflags = [] dpdk_app_link_libraries = [] +dpdk_libs_disabled = [] +dpdk_drvs_disabled = [] +abi_version_file = files('ABI_VERSION') # 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 +115,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')