summaryrefslogtreecommitdiffstats
path: root/cmake/FindTslib.cmake
blob: f4649c714c9821040761943a67d475e5a7f3c2b2 (plain)
1
2
3
4
5
6
7
8
9
10
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause

find_package(PkgConfig QUIET)

pkg_check_modules(Tslib tslib IMPORTED_TARGET)

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