04b7641e85
- Add x11proto to redbear-full.toml package list - libxau recipe updated with x11proto dependency and custom build script - Fixes libxau build failure: 'Package xproto was not found'
11 lines
239 B
CMake
11 lines
239 B
CMake
# Copyright (C) 2022 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
find_package(PkgConfig QUIET)
|
|
|
|
pkg_check_modules(Liburing IMPORTED_TARGET "liburing")
|
|
|
|
if (NOT TARGET PkgConfig::Liburing)
|
|
set(Liburing_FOUND 0)
|
|
endif()
|