]> git.droids-corp.org - dpdk.git/blobdiff - examples/vm_power_manager/guest_cli/meson.build
ethdev: dump single flow rule
[dpdk.git] / examples / vm_power_manager / guest_cli / meson.build
index 38bd8d837883cf1fe31d334615dbc330548b8d26..cd9526601835a1976f3b5fd7e2d5dad1cc429642 100644 (file)
@@ -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