diff options
author | Guy Harris <guy@alum.mit.edu> | 2019-02-06 11:18:00 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-06 11:18:00 -0800 |
commit | 8d27f83067b03c6e49be86bdf2a4a2f829aebdb2 (patch) | |
tree | e3ec5fb5605a64181b4315df979ac3ef7fbd3ee6 | |
parent | d8fd5c4489a19f3501ae95121074a0348383a92d (diff) | |
parent | cc032c45ea453d8c8d1ba1a9dd1fbe4186acf642 (diff) |
Merge pull request #799 from AndersBroman/master
DPDK: When using CMake PCAP_SUPPORT_DPDK is not set.
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index df9461a4..872e8718 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1443,6 +1443,7 @@ if (NOT DISABLE_DPDK) link_directories(AFTER ${dpdk_LIBRARIES}) set(PCAP_LINK_LIBRARIES ${PCAP_LINK_LIBRARIES} ${dpdk_LIBRARIES}) set(PROJECT_SOURCE_LIST_C ${PROJECT_SOURCE_LIST_C} pcap-dpdk.c) + set(PCAP_SUPPORT_DPDK TRUE) endif() endif() |