mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
10 lines
254 B
Bash
Executable file
10 lines
254 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Computes a value for the environment variable `SPICY_PATH` for execution of
|
|
# Spicy tooling in the build tree.
|
|
|
|
PATHS=.
|
|
PATHS=$PATHS:@CMAKE_SOURCE_DIR@/auxil/spicy/spicy/lib
|
|
PATHS=$PATHS:@CMAKE_SOURCE_DIR@/auxil/spicy/hilti/lib
|
|
|
|
echo $PATHS
|