mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Sort toplevel .bif list in CMakeLists
Not important, but here it is safe to do so and the list is getting lengthy.
This commit is contained in:
parent
4c960fd7d5
commit
b4725c113f
1 changed files with 12 additions and 12 deletions
|
@ -111,27 +111,27 @@ include(BifCl)
|
|||
set(SUPERVISOR_SRCS supervisor/Supervisor.cc Pipe.cc)
|
||||
|
||||
set(BIF_SRCS
|
||||
zeek.bif
|
||||
communityid.bif
|
||||
stats.bif
|
||||
event.bif
|
||||
const.bif
|
||||
types.bif
|
||||
strings.bif
|
||||
reporter.bif
|
||||
event.bif
|
||||
option.bif
|
||||
# Note: the supervisor BIF file is treated like other top-level BIFs instead
|
||||
# of contained in its own subdirectory CMake logic because subdirectory BIFs
|
||||
# are treated differently and don't support being called *during* parsing
|
||||
# (e.g. within an @if directive).
|
||||
supervisor/supervisor.bif
|
||||
reporter.bif
|
||||
stats.bif
|
||||
strings.bif
|
||||
types.bif
|
||||
zeek.bif
|
||||
# The packet analysis BIF is treated like other top-level BIFs because it's
|
||||
# needed before parsing the packet protocol scripts, which happen very near
|
||||
# to the start of parsing.
|
||||
packet_analysis/packet_analysis.bif
|
||||
# The C++ loading BIF is treated like other top-level BIFs to give us
|
||||
# flexibility regarding when it's called.
|
||||
script_opt/CPP/CPP-load.bif)
|
||||
script_opt/CPP/CPP-load.bif
|
||||
# Note: the supervisor BIF file is treated like other top-level BIFs instead
|
||||
# of contained in its own subdirectory CMake logic because subdirectory BIFs
|
||||
# are treated differently and don't support being called *during* parsing
|
||||
# (e.g. within an @if directive).
|
||||
supervisor/supervisor.bif)
|
||||
|
||||
foreach (bift ${BIF_SRCS})
|
||||
bif_target(${bift} "standard")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue