blob: 4382a8ccead97f0179146d6a00cb74111e145700 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#
# Copyright 2018 Ettus Research, a National Instruments Company
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
# - Find DPDK
# Find the DPDK includes and client library
# This module defines
# DPDK_INCLUDE_DIR, where to find rte_config.h
# DPDK_LIBRARIES, the libraries needed by a DPDK user
# DPDK_FOUND, If false, do not try to use DPDK.
# also defined, but not for general use are
# DPDK_LIBRARY, where to find the DPDK library.
include(FindPackageHandleStandardArgs)
find_path ( DPDK_INCLUDE_DIR rte_config.h
PATHS ENV RTE_INCLUDE
PATH_SUFFIXES dpdk
)
find_library(DPDK_LIBRARY
PATHS $ENV{RTE_SDK_DIR}/$ENV{RTE_TARGET}/lib
)
list(APPEND DPDK_LIBRARIES dpdk)
find_package_handle_standard_args(dpdk
DEFAULT_MSG
DPDK_INCLUDE_DIR
DPDK_LIBRARIES
)
|