mirror of
git://code.qt.io/qt/qt5.git
synced 2025-12-21 15:38:15 +08:00
These test helpers are moved to qtbase submodule.
Pick-to: 6.8
Change-Id: If8aa31fe1d9a93f2667249abd90ae9b8cb81d07a
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
(cherry picked from commit e552513c9f)
17 lines
416 B
CMake
17 lines
416 B
CMake
# Copyright (C) 2024 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
# Sets up the include paths for all the helpers configure uses.
|
|
macro(qt_tl_setup_include_paths)
|
|
list(APPEND CMAKE_MODULE_PATH
|
|
"${CMAKE_CURRENT_LIST_DIR}"
|
|
)
|
|
include(QtTopLevelHelpers)
|
|
endmacro()
|
|
|
|
qt_tl_setup_include_paths()
|
|
qt_tl_include_all_helpers()
|
|
qt_tl_run_main_script()
|