mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00

This creates $PREFIX/share/btest in the install tree, with the following folders: - scripts/ for the canonifiers - data/ for random.seed - data/pcaps for the test pcaps The pcaps can be skipped by configuring with --disable-btest-pcaps.
8 lines
351 B
CMake
8 lines
351 B
CMake
install(DIRECTORY scripts/ DESTINATION ${ZEEK_CONFIG_BTEST_TOOLS_DIR}/scripts
|
|
USE_SOURCE_PERMISSIONS
|
|
FILES_MATCHING PATTERN "diff-*")
|
|
install(FILES btest/random.seed DESTINATION ${ZEEK_CONFIG_BTEST_TOOLS_DIR}/data)
|
|
|
|
if ( INSTALL_BTEST_PCAPS )
|
|
install(DIRECTORY btest/Traces/ DESTINATION ${ZEEK_CONFIG_BTEST_TOOLS_DIR}/data/pcaps)
|
|
endif ()
|