net/igc: remove use of uint type
[dpdk.git] / drivers / net / ixgbe / meson.build
index 6667af6..76cbfb8 100644 (file)
@@ -1,9 +1,13 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
-cflags += ['-DRTE_LIBRTE_IXGBE_BYPASS']
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+       subdir_done()
+endif
 
-allow_experimental_apis = true
+cflags += ['-DRTE_LIBRTE_IXGBE_BYPASS']
 
 subdir('base')
 objs = [base_objs]
@@ -26,8 +30,10 @@ deps += ['hash', 'security']
 
 if arch_subdir == 'x86'
        sources += files('ixgbe_rxtx_vec_sse.c')
+elif arch_subdir == 'arm'
+       sources += files('ixgbe_rxtx_vec_neon.c')
 endif
 
 includes += include_directories('base')
 
-install_headers('rte_pmd_ixgbe.h')
+headers = files('rte_pmd_ixgbe.h')