You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
659 B
20 lines
659 B
# - 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 |
|
|
|
# Copyright (c) 2017, Julian Wolff, <wolff@julianwolff.de> |
|
# Copyright (c) 2018, Sune Vuorela, <sune@kde.org> |
|
# |
|
# Redistribution and use is allowed according to the terms of the BSD license. |
|
# For details see the accompanying COPYING-CMAKE-SCRIPTS file. |
|
|
|
include(FindPackageHandleStandardArgs) |
|
|
|
find_package(PkgConfig REQUIRED) |
|
|
|
pkg_check_modules(Discount IMPORTED_TARGET "libmarkdown") |
|
|
|
find_package_handle_standard_args(Discount DEFAULT_MSG Discount_LIBRARIES)
|
|
|