mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
13 lines
549 B
Bash
Executable file
13 lines
549 B
Bash
Executable file
#!/bin/sh
|
|
# After configured by CMake, this file prints the absolute path to Bro scripts
|
|
# that come with the source distributions of Bro as well as scripts that are
|
|
# generated by the BIF compiler at compile time.
|
|
#
|
|
# The intended use of this script is to make it easier to run Bro from
|
|
# the build directory, avoiding the need to install it. This could be
|
|
# done like:
|
|
#
|
|
# BROPATH=`./bro-path-dev` ./src/bro
|
|
#
|
|
|
|
echo .:${CMAKE_SOURCE_DIR}/scripts:${CMAKE_SOURCE_DIR}/scripts/policy:${CMAKE_SOURCE_DIR}/scripts/site:${CMAKE_BINARY_DIR}/scripts
|