diff options
author | Damjan Marion <damarion@cisco.com> | 2023-10-17 16:08:18 +0000 |
---|---|---|
committer | Damjan Marion <damarion@cisco.com> | 2023-11-02 16:08:57 +0000 |
commit | 47447f1f599064032d364ad253f0b0a91fe21435 (patch) | |
tree | 4e7b4193b2f283ced8047d413bebaab0762e4be4 /src/plugins/dev_iavf/CMakeLists.txt | |
parent | 38c619115b0399bae8b0dcf66e57e623cc50809c (diff) |
iavf: new driver using new dev infra
Type: feature
Change-Id: I9ae0dbf28b4571a37c568b587b771f90c06f200d
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/plugins/dev_iavf/CMakeLists.txt')
-rw-r--r-- | src/plugins/dev_iavf/CMakeLists.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/plugins/dev_iavf/CMakeLists.txt b/src/plugins/dev_iavf/CMakeLists.txt new file mode 100644 index 00000000000..8fa89b7a677 --- /dev/null +++ b/src/plugins/dev_iavf/CMakeLists.txt @@ -0,0 +1,20 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright(c) 2022 Cisco Systems, Inc. + +add_vpp_plugin(dev_iavf + SOURCES + adminq.c + counters.c + format.c + iavf.c + port.c + queue.c + rx_node.c + tx_node.c + virtchnl.c + + MULTIARCH_SOURCES + rx_node.c + tx_node.c +) + |