net/ice: remove redundant function
[dpdk.git] / drivers / common / mvep / meson.build
index 8ccfacb..7cd968b 100644 (file)
@@ -3,17 +3,14 @@
 # Copyright(c) 2018 Semihalf.
 # All rights reserved.
 #
-path = get_option('lib_musdk_dir')
-lib_dir = path + '/lib'
-inc_dir = path + '/include'
 
-lib = cc.find_library('libmusdk', dirs: [lib_dir], required: false)
-if not lib.found()
+dep = dependency('libmusdk', required: false, method: 'pkg-config')
+if not dep.found()
        build = false
-else
-       ext_deps += lib
-       includes += include_directories(inc_dir)
-       cflags += ['-DMVCONF_TYPES_PUBLIC', '-DMVCONF_DMA_PHYS_ADDR_T_PUBLIC']
+       reason = 'missing dependency, "libmusdk"'
+       subdir_done()
 endif
 
+ext_deps += dep
+
 sources = files('mvep_common.c')