summaryrefslogtreecommitdiffstats
path: root/cmake/FindTslib.cmake
blob: e15002326226b29072f76c076a9423903b4021a2 (plain)
1
2
3
4
5
6
7
8
9
10
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

find_package(PkgConfig QUIET)

pkg_check_modules(Tslib tslib IMPORTED_TARGET)

if (NOT TARGET PkgConfig::Tslib)
    set(Tslib_FOUND 0)
endif()