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

Most of these changes are either cmake-related or plugin-related. Added a new test "plugins/legacy.zeek" to test that legacy Bro plugins still work. Also added a symlink bro-path-dev.in because some legacy Bro packages won't install without it.
22 lines
483 B
CMake
22 lines
483 B
CMake
|
|
include(ZeekSubdir)
|
|
|
|
include_directories(BEFORE
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
)
|
|
|
|
set(probabilistic_SRCS
|
|
BitVector.cc
|
|
BloomFilter.cc
|
|
CardinalityCounter.cc
|
|
CounterVector.cc
|
|
Hasher.cc
|
|
Topk.cc)
|
|
|
|
bif_target(bloom-filter.bif)
|
|
bif_target(cardinality-counter.bif)
|
|
bif_target(top-k.bif)
|
|
bro_add_subdir_library(probabilistic ${probabilistic_SRCS})
|
|
|
|
add_dependencies(bro_probabilistic generate_outputs)
|