ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
16 lines
570 B
CMake
16 lines
570 B
CMake
# Copyright (C) 2024 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Find "ModuleTools" dependencies, which are other ModuleTools packages.
|
|
set(@INSTALL_CMAKE_NAMESPACE@@target@_FOUND TRUE)
|
|
|
|
set(__qt_@target@_tool_third_party_deps "@third_party_deps@")
|
|
if(__qt_@target@_tool_third_party_deps)
|
|
_qt_internal_find_third_party_dependencies("@target@" __qt_@target@_tool_third_party_deps)
|
|
endif()
|
|
|
|
set(__qt_@target@_tool_deps "@package_deps@")
|
|
if(__qt_@target@_tool_deps)
|
|
_qt_internal_find_tool_dependencies("@target@" __qt_@target@_tool_deps)
|
|
endif()
|