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

Also now uses CMake's ENABLE_EXPORTS target property for the zeek executable to ensure symbols are visible to plugins. Prior to CMake 3.4, the policy was to export symbols by default for certain platforms, but later versions need either the explicit target property or policy.
18 lines
341 B
CMake
18 lines
341 B
CMake
|
|
project(Zeek-Plugin-Demo-Foo)
|
|
|
|
cmake_minimum_required(VERSION 3.5)
|
|
|
|
if ( NOT BRO_DIST )
|
|
message(FATAL_ERROR "BRO_DIST not set")
|
|
endif ()
|
|
|
|
set(CMAKE_MODULE_PATH ${BRO_DIST}/cmake)
|
|
|
|
include(ZeekPlugin)
|
|
|
|
zeek_plugin_begin(Demo Foo)
|
|
zeek_plugin_cc(src/Plugin.cc)
|
|
zeek_plugin_cc(src/Foo.cc)
|
|
zeek_plugin_bif(src/events.bif)
|
|
zeek_plugin_end()
|