Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
FindGenhtml.cmake 742 B
################################################################################
# Copyright (c) 2021 in-tech GmbH
#
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
################################################################################
#
# Find Package Adapter for "Genhtml"
#
# - GENHTML_EXECUTABLE: The executable
# - GENHTML_FOUND: True if genhtml was found
#
include(FindPackageHandleStandardArgs)
find_program(GENHTML_EXECUTABLE NAMES genhtml genhtml.perl genhtml.bat )
find_package_handle_standard_args(Genhtml "Unable to locate genhtml" GENHTML_EXECUTABLE)