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.
27 lines
1.0 KiB
CMake
27 lines
1.0 KiB
CMake
# Copyright (C) 2024 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
foreach(__qt_tool @tool_targets_non_prefixed@)
|
|
if(NOT TARGET Qt::${__qt_tool} AND TARGET Qt6::${__qt_tool})
|
|
add_executable(Qt::${__qt_tool} IMPORTED GLOBAL)
|
|
|
|
# Check all the usual imported location properties to find one that contains a path.
|
|
foreach(__qt_imported_location_config
|
|
IMPORTED_LOCATION
|
|
IMPORTED_LOCATION_RELEASE
|
|
IMPORTED_LOCATION_RELWITHDEBINFO
|
|
IMPORTED_LOCATION_MINSIZEREL
|
|
IMPORTED_LOCATION_DEBUG)
|
|
|
|
get_target_property(__qt_imported_location
|
|
Qt6::${__qt_tool} ${__qt_imported_location_config})
|
|
if(__qt_imported_location AND EXISTS "${__qt_imported_location}")
|
|
break()
|
|
endif()
|
|
endforeach()
|
|
|
|
set_target_properties(Qt::${__qt_tool}
|
|
PROPERTIES IMPORTED_LOCATION "${__qt_imported_location}")
|
|
endif()
|
|
endforeach()
|