zeek/auxil/gen-zam/cmake/FindSubnetTree.cmake
Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

26 lines
789 B
CMake

# - Determine if the SubnetTree Python module is available
#
# Usage of this module as follows:
#
# find_package(Python REQUIRED COMPONENTS Interpreter)
# find_package(SubnetTree)
#
# Variables defined by this module:
#
# SUBNETTREE_FOUND Python successfully imports SubnetTree module
if (NOT SUBNETTREE_FOUND)
execute_process(COMMAND "${Python_EXECUTABLE}" -c "import SubnetTree"
RESULT_VARIABLE SUBNETTREE_IMPORT_RESULT)
if (SUBNETTREE_IMPORT_RESULT)
# python returned non-zero exit status
set(SUBNETTREE_PYTHON_MODULE false)
else ()
set(SUBNETTREE_PYTHON_MODULE true)
endif ()
endif ()
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(SubnetTree DEFAULT_MSG SUBNETTREE_PYTHON_MODULE)