From b4725c113f9a5837d3419a0f7476d3d77e989a27 Mon Sep 17 00:00:00 2001 From: Christian Kreibich Date: Fri, 5 Jan 2024 16:52:28 -0800 Subject: [PATCH] Sort toplevel .bif list in CMakeLists Not important, but here it is safe to do so and the list is getting lengthy. --- src/CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 4101e97be1..ef779e13e7 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -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")