mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 12:38:20 +00:00

This is based on commit 99e6942efec5feff50523f6b2a1f5868f19ab638 from the zeek-docs repo.
14 lines
264 B
CMake
14 lines
264 B
CMake
cmake_minimum_required(VERSION 3.15 FATAL_ERROR)
|
|
|
|
project(ZeekPluginConnKeyVxlanVniFivetuple)
|
|
|
|
include(ZeekPlugin)
|
|
|
|
zeek_add_plugin(
|
|
Zeek
|
|
ConnKey_Vxlan_Vni_Fivetuple
|
|
SOURCES
|
|
src/Factory.cc
|
|
src/Plugin.cc
|
|
SCRIPT_FILES scripts/__load__.zeek
|
|
)
|