mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Move CMake template files to separate directory
This commit is contained in:
parent
64ebdec438
commit
25da02fe50
12 changed files with 29 additions and 26 deletions
20
cmake_templates/hilti-cxx-include-dirs.in
Executable file
20
cmake_templates/hilti-cxx-include-dirs.in
Executable file
|
@ -0,0 +1,20 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Computes CXX flags for Spicy compilation in the build tree. The value
|
||||
# computed by this script can be injected into Spicy JIT via the environment
|
||||
# variable `HILTI_CXX_INCLUDE_DIRS`.
|
||||
|
||||
# Paths to support compiling Spicy parsers in the build tree.
|
||||
PATHS=@CMAKE_SOURCE_DIR@/auxil/spicy/hilti/runtime/include
|
||||
PATHS=$PATHS:@CMAKE_SOURCE_DIR@/auxil/spicy/spicy/runtime/include
|
||||
PATHS=$PATHS:@CMAKE_BINARY_DIR@/auxil/spicy/include
|
||||
|
||||
# Paths to support compiling against a build tree Zeek.
|
||||
PATHS=$PATHS:@CMAKE_BINARY_DIR@
|
||||
PATHS=$PATHS:@CMAKE_BINARY_DIR@/src
|
||||
PATHS=$PATHS:@CMAKE_BINARY_DIR@/src/include
|
||||
PATHS=$PATHS:@CMAKE_SOURCE_DIR@/src
|
||||
PATHS=$PATHS:@CMAKE_SOURCE_DIR@/src/include
|
||||
PATHS=$PATHS:@CMAKE_SOURCE_DIR@/auxil/broker/include/
|
||||
|
||||
echo $PATHS
|
Loading…
Add table
Add a link
Reference in a new issue