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

16 lines
405 B
CMake

# - Try to find capstats program
#
# Usage of this module as follows:
#
# find_package(Capstats)
#
# Variables defined by this module:
#
# CAPSTATS_FOUND capstats binary found
# Capstats_EXE path to the capstats executable binary
find_program(CAPSTATS_EXE capstats)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(Capstats DEFAULT_MSG CAPSTATS_EXE)