mirror of https://github.com/qt/qt5.git
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()
|