Update zeek-aux to remove BRO_DIST from plugin skeleton

This commit is contained in:
Tim Wojtulewicz 2025-08-06 12:12:19 -07:00
parent 3c535ec215
commit 162ecc022e
2 changed files with 4 additions and 4 deletions

View file

@ -2,11 +2,11 @@ cmake_minimum_required(VERSION 3.15)
project(Zeek-Plugin-Demo-Foo)
if (NOT BRO_DIST)
message(FATAL_ERROR "BRO_DIST not set")
if (NOT ZEEK_DIST)
message(FATAL_ERROR "ZEEK_DIST not set")
endif ()
set(CMAKE_MODULE_PATH ${BRO_DIST}/cmake)
set(CMAKE_MODULE_PATH ${ZEEK_DIST}/cmake)
include(ZeekPlugin)