X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=examples%2Fvm_power_manager%2Fguest_cli%2Fmeson.build;h=cd9526601835a1976f3b5fd7e2d5dad1cc429642;hb=50c383793b7b377ed9f733a779976447dbfd8bda;hp=38bd8d837883cf1fe31d334615dbc330548b8d26;hpb=16015fd65a5532604139d4c597e1c16027209c4e;p=dpdk.git diff --git a/examples/vm_power_manager/guest_cli/meson.build b/examples/vm_power_manager/guest_cli/meson.build index 38bd8d8378..cd95266018 100644 --- a/examples/vm_power_manager/guest_cli/meson.build +++ b/examples/vm_power_manager/guest_cli/meson.build @@ -6,11 +6,7 @@ # To build this example as a standalone application with an already-installed # DPDK instance, use 'make' -# Setting the name here because the default name will conflict with the -# vm_power_manager app because of the way the directories are parsed. -name = 'guest_cli' - -if not dpdk_conf.has('RTE_LIBRTE_POWER') +if not dpdk_conf.has('RTE_LIB_POWER') build = false subdir_done() endif @@ -21,6 +17,8 @@ sources = files( 'main.c', 'parse.c', 'vm_power_cli_guest.c' ) +allow_experimental_apis = true + opt_dep = cc.find_library('virt', required : false) build = opt_dep.found() ext_deps += opt_dep