zeek/auxil/binpac/cmake/FindTraceSummary.cmake
Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

16 lines
452 B
CMake

# - Try to find the trace-summary Python program
#
# Usage of this module as follows:
#
# find_package(TraceSummary)
#
# Variables defined by this module:
#
# TRACESUMMARY_FOUND capstats binary found
# TraceSummary_EXE path to the capstats executable binary
find_program(TRACE_SUMMARY_EXE trace-summary)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(TraceSummary DEFAULT_MSG TRACE_SUMMARY_EXE)