mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +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(SUPERVISOR_SRCS supervisor/Supervisor.cc Pipe.cc)
|
||||||
|
|
||||||
set(BIF_SRCS
|
set(BIF_SRCS
|
||||||
zeek.bif
|
|
||||||
communityid.bif
|
communityid.bif
|
||||||
stats.bif
|
|
||||||
event.bif
|
|
||||||
const.bif
|
const.bif
|
||||||
types.bif
|
event.bif
|
||||||
strings.bif
|
|
||||||
reporter.bif
|
|
||||||
option.bif
|
option.bif
|
||||||
# Note: the supervisor BIF file is treated like other top-level BIFs instead
|
reporter.bif
|
||||||
# of contained in its own subdirectory CMake logic because subdirectory BIFs
|
stats.bif
|
||||||
# are treated differently and don't support being called *during* parsing
|
strings.bif
|
||||||
# (e.g. within an @if directive).
|
types.bif
|
||||||
supervisor/supervisor.bif
|
zeek.bif
|
||||||
# The packet analysis BIF is treated like other top-level BIFs because it's
|
# 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
|
# needed before parsing the packet protocol scripts, which happen very near
|
||||||
# to the start of parsing.
|
# to the start of parsing.
|
||||||
packet_analysis/packet_analysis.bif
|
packet_analysis/packet_analysis.bif
|
||||||
# The C++ loading BIF is treated like other top-level BIFs to give us
|
# The C++ loading BIF is treated like other top-level BIFs to give us
|
||||||
# flexibility regarding when it's called.
|
# 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})
|
foreach (bift ${BIF_SRCS})
|
||||||
bif_target(${bift} "standard")
|
bif_target(${bift} "standard")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue