2023-03-02 13:45:23 +00:00
|
|
|
# Copyright (C) 2023 The Qt Company Ltd.
|
2024-03-15 10:13:27 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2023-03-02 13:45:23 +00:00
|
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
|
|
|
|
|
|
include(.cmake.conf)
|
|
|
|
|
project(QtGraphs
|
|
|
|
|
VERSION "${QT_REPO_MODULE_VERSION}"
|
|
|
|
|
DESCRIPTION "Qt Graphs Libraries"
|
|
|
|
|
HOMEPAGE_URL "https://qt.io/"
|
|
|
|
|
LANGUAGES CXX C
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
find_package(Qt6 ${PROJECT_VERSION} CONFIG REQUIRED COMPONENTS BuildInternals)
|
2024-10-18 09:52:19 +00:00
|
|
|
find_package(Qt6 ${PROJECT_VERSION} CONFIG OPTIONAL_COMPONENTS Core Quick Gui Widgets QuickTest QuickWidgets Test Quick3D QuickShapesPrivate PrintSupport)
|
2023-03-02 13:45:23 +00:00
|
|
|
|
|
|
|
|
macro(assertTargets)
|
|
|
|
|
foreach(qtTarget IN ITEMS ${ARGN})
|
|
|
|
|
if(NOT TARGET Qt::${qtTarget})
|
|
|
|
|
message(NOTICE "Skipping the build as the condition \"TARGET Qt::${qtTarget}\" is not met.")
|
|
|
|
|
return()
|
|
|
|
|
endif()
|
|
|
|
|
endforeach()
|
|
|
|
|
endmacro()
|
|
|
|
|
|
2025-01-10 14:51:49 +00:00
|
|
|
assertTargets(Gui Widgets Quick QuickWidgets)
|
2023-03-02 13:45:23 +00:00
|
|
|
|
|
|
|
|
qt_build_repo()
|