event/octeontx2: add SSO GWS and GGRP IRQ handlers
[dpdk.git] / drivers / event / octeontx2 / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(C) 2019 Marvell International Ltd.
3 #
4
5 sources = files('otx2_evdev.c',
6                 'otx2_evdev_irq.c',
7                 )
8
9 allow_experimental_apis = true
10
11 extra_flags = []
12 # This integrated controller runs only on a arm64 machine, remove 32bit warnings
13 if not dpdk_conf.get('RTE_ARCH_64')
14         extra_flags += ['-Wno-int-to-pointer-cast', '-Wno-pointer-to-int-cast']
15 endif
16
17 foreach flag: extra_flags
18         if cc.has_argument(flag)
19                 cflags += flag
20         endif
21 endforeach
22
23 deps += ['bus_pci', 'common_octeontx2', 'mempool_octeontx2']