okular/cmake/modules/FindDiscount.cmake

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
571 B
CMake
Raw Normal View History

# - Find Discount
# Find the discount markdown library.
#
# This module defines
# Discount_FOUND - whether the discount library was found
# PkgConfig::Discount - the discount target to link to
2021-05-24 07:25:56 +00:00
# SPDX-FileCopyrightText: 2017 Julian Wolff <wolff@julianwolff.de>
# SPDX-FileCopyrightText: 2018 Sune Vuorela <sune@kde.org>
# SPDX-License-Identifier: BSD-3-Clause
include(FindPackageHandleStandardArgs)
find_package(PkgConfig REQUIRED)
pkg_check_modules(Discount IMPORTED_TARGET "libmarkdown")
find_package_handle_standard_args(Discount DEFAULT_MSG Discount_LIBRARIES)