mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00

This moves `auxil/spicy/spicy` to `auxil/spicy`. It relocates the pieces previously inside that intermediary directory. The main change is that now tweak the compilation flags for Spicy through target options. This is on top of `topic/robin/spicy-plugin`.
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
|