zeek/src/logging/CMakeLists.txt
Tim Wojtulewicz 331161138a Unify all of the Tag types into one type
- 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
2021-11-23 19:36:49 -07:00

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)