bus/pci: fix Windows kernel driver categories
[dpdk.git] / drivers / mempool / octeontx2 / meson.build
index ec3c59e..0586321 100644 (file)
@@ -2,19 +2,21 @@
 # Copyright(C) 2019 Marvell International Ltd.
 #
 
-sources = files('otx2_mempool.c',
-               )
-
-extra_flags = []
-# This integrated controller runs only on a arm64 machine, remove 32bit warnings
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+       subdir_done()
+endif
 if not dpdk_conf.get('RTE_ARCH_64')
-       extra_flags += ['-Wno-int-to-pointer-cast', '-Wno-pointer-to-int-cast']
+       build = false
+       reason = 'only supported on 64-bit'
+       subdir_done()
 endif
 
-foreach flag: extra_flags
-       if cc.has_argument(flag)
-               cflags += flag
-       endif
-endforeach
+sources = files('otx2_mempool_ops.c',
+               'otx2_mempool.c',
+               'otx2_mempool_irq.c',
+               'otx2_mempool_debug.c'
+               )
 
 deps += ['eal', 'mbuf', 'kvargs', 'bus_pci', 'common_octeontx2', 'mempool']