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:
Christian Kreibich 2024-01-05 16:52:28 -08:00
parent 4c960fd7d5
commit b4725c113f

View file

@ -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")