mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 07:38:19 +00:00

- Remove tag types for each component type (analyzer, etc) - Add deprecated versions of the old types - Remove unnecessary tag element from templates for TaggedComponent and ComponentManager - Enable TaggedComponent to pass an EnumType when initializing Tag objects - Update some tests that are affected by the tag enum values changing order
23 lines
439 B
CMake
23 lines
439 B
CMake
|
|
include(ZeekSubdir)
|
|
|
|
include_directories(BEFORE
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
)
|
|
|
|
include_directories(BEFORE ${CAF_INCLUDE_DIRS})
|
|
|
|
add_subdirectory(writers)
|
|
|
|
set(logging_SRCS
|
|
Component.cc
|
|
Manager.cc
|
|
WriterBackend.cc
|
|
WriterFrontend.cc
|
|
)
|
|
|
|
bif_target(logging.bif)
|
|
|
|
bro_add_subdir_library(logging ${logging_SRCS})
|
|
add_dependencies(bro_logging generate_outputs)
|